upload CI binaries to webserver for easy direct download

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-12-13 01:47:53 -05:00
parent c5aca8036d
commit 17273b1cea
No known key found for this signature in database
3 changed files with 180 additions and 18 deletions

View file

@ -84,14 +84,12 @@ buildDepsOnlyEnv =
enableLiburing = enableLiburing;
}).overrideAttrs (old: {
enableLiburing = enableLiburing;
cmakeFlags = lib.optional x86_64_haswell_target_optimised (lib.subtractLists [
cmakeFlags = (if x86_64_haswell_target_optimised then (lib.subtractLists [
# dont make a portable build if x86_64_haswell_target_optimised is enabled
"-DPORTABLE=1"
]
old.cmakeFlags)
++ lib.optionals x86_64_haswell_target_optimised [
"-DPORTABLE=haswell"
]
] old.cmakeFlags
++ [ "-DPORTABLE=haswell" ]) else ([ "-DPORTABLE=1" ])
)
++ old.cmakeFlags;
});
in