fix gccarch definitions
This commit is contained in:
parent
129cf20a81
commit
b832408a5f
4 changed files with 33 additions and 8 deletions
|
@ -180,6 +180,16 @@
|
|||
"/ip6/::/tcp/5001"
|
||||
]; # Only exposed over the tailed scale
|
||||
|
||||
nix.settings.system-features = [
|
||||
"kvm"
|
||||
"nixos-test"
|
||||
"big-parallel"
|
||||
"benchmark"
|
||||
"gccarch-znver1"
|
||||
"gccarch-skylake"
|
||||
"ca-derivations"
|
||||
];
|
||||
|
||||
# Remove when https://nixpk.gs/pr-tracker.html?pr=235815 hits
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
|
|
|
@ -115,7 +115,19 @@ in {
|
|||
];
|
||||
maxJobs = 4;
|
||||
speedFactor = 1;
|
||||
supportedFeatures = ["nixos-test" "benchmark" "ca-derivations"];
|
||||
supportedFeatures = [
|
||||
"nixos-test"
|
||||
"benchmark"
|
||||
"gccarch-rv64gc_zba_zbb"
|
||||
"gccarch-rv64gc_zba"
|
||||
"gccarch-rv64gc_zbb"
|
||||
"gccarch-rv64gc"
|
||||
"gccarch-rv32gc_zba_zbb"
|
||||
"gccarch-rv32gc_zba"
|
||||
"gccarch-rv32gc_zbb"
|
||||
"gccarch-rv32gc"
|
||||
"ca-derivations"
|
||||
];
|
||||
}
|
||||
])
|
||||
];
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
machines = pkgs.writeText "machines" ''
|
||||
localhost armv7l-linux,powerpc-linux,powerpc64-linux,powerpc64le-linux,wasm32-wasi,x86_64-linux,i686-linux - 12 1 kvm,nixos-test,big-parallel,benchmark,gccarch-znver1,gccarch-skylake,ca-derivations -
|
||||
build-aarch64 aarch64-linux - 4 1 nixos-test,benchmark,ca-derivations,gccarch-armv8-a,gccarch-armv8.1-a,gccarch-armv8.2-a,big-parallel -
|
||||
build-riscv riscv-linux - 4 1 nixos-test,benchmark,ca-derivations,big-parallel -
|
||||
build-riscv riscv-linux - 4 1 nixos-test,benchmark,ca-derivations,gccarch-rv64gc_zba_zbb,gccarch-rv64gc_zba,gccarch-rv64gc_zbb,ccarch-rv64gc,gccarch-rv32gc_zba_zbb,gccarch-rv32gc_zba,gccarch-rv32gc_zbb,ccarch-rv32gc,big-parallel -
|
||||
'';
|
||||
sshConfig = pkgs.writeText "ssh-config" ''
|
||||
Host build-aarch64
|
||||
|
|
|
@ -163,12 +163,15 @@
|
|||
"big-parallel"
|
||||
"benchmark"
|
||||
"ca-derivations"
|
||||
"gccarch-riscv-i"
|
||||
"gccarch-riscv-m"
|
||||
"gccarch-riscv-a"
|
||||
"gccarch-riscv-f"
|
||||
"gccarch-riscv-d"
|
||||
"gccarch-riscv-c"
|
||||
# There are many more combinations but i simply do not care lol
|
||||
"gccarch-rv64gc_zba_zbb"
|
||||
"gccarch-rv64gc_zba"
|
||||
"gccarch-rv64gc_zbb"
|
||||
"gccarch-rv64gc"
|
||||
"gccarch-rv32gc_zba_zbb"
|
||||
"gccarch-rv32gc_zba"
|
||||
"gccarch-rv32gc_zbb"
|
||||
"gccarch-rv32gc"
|
||||
];
|
||||
nix.daemonCPUSchedPolicy = "idle";
|
||||
nix.daemonIOSchedClass = "idle";
|
||||
|
|
Loading…
Reference in a new issue