Commit 6219fc6
committed
fix(ci): disambiguate sccache binary for ubi backend on x86_64
ubi:mozilla/sccache picks sccache-dist instead of sccache on x86_64
linux because both release assets match the platform and ubi selects
sccache-dist first alphabetically. The sccache-dist binary is the
distributed build scheduler, not the compiler cache wrapper, causing
RUSTC_WRAPPER to fail with 'unrecognized subcommand'.
Use matching="sccache-v" to filter release assets at download time,
ensuring ubi selects sccache-v0.14.0-* instead of sccache-dist-v0.14.0-*.
The exe option alone is insufficient because ubi partial-matches
sccache-dist containing sccache. arm64 is unaffected since sccache-dist
has no arm64 release asset.1 parent 344f99c commit 6219fc6
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
| 18 | + | |
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| |||
0 commit comments