upload CI binaries to webserver for easy direct download
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
c5aca8036d
commit
17273b1cea
3 changed files with 180 additions and 18 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue