mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-05-04 11:10:02 +00:00
Fixes for the CI (#242)
This commit is contained in:
parent
450e29d9cc
commit
51b300d29e
13 changed files with 375 additions and 276 deletions
|
@ -1,15 +1,16 @@
|
|||
if ($ref | startswith("refs/tags/v")) then {
|
||||
if $for_release then {
|
||||
output: "release",
|
||||
profile: "release",
|
||||
args: ($matrix.release_build_args // ""),
|
||||
} else {
|
||||
output: "debug",
|
||||
profile: "dev",
|
||||
args: ($matrix.debug_build_args // ""),
|
||||
args: ($matrix.debug_build_args // "--no-default-features --features rustls"),
|
||||
} end
|
||||
|
|
||||
{
|
||||
CTOOL: (if $matrix."use-cross" then "cross" else "cargo" end),
|
||||
CBIN: (if ($matrix.target | test("windows")) then "cargo-binstall.exe" else "cargo-binstall" end),
|
||||
CTOOL: (if ($matrix."use-cross" // false) then "cross" else "cargo" end),
|
||||
COUTPUT: .output,
|
||||
CARGS: "--target \($matrix.target) --profile \(.profile) \(.args)",
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue