Skip to content

Commit

Permalink
Fix Windows CI.
Browse files Browse the repository at this point in the history
It seems to be caused by nextest-rs/nextest#1493, with this comment
as a fix:
nextest-rs/nextest#1493 (comment)
  • Loading branch information
bogdan2412 committed May 20, 2024
1 parent e72f65f commit 40d5ab7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/gen_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
CARGO_INCREMENTAL: "0"
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
RUSTUP_WINDOWS_PATH_ADD_BIN: "1"

steps:
- name: "checkout repo"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/gen_windows_continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
CARGO_INCREMENTAL: "0"
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
RUSTUP_WINDOWS_PATH_ADD_BIN: "1"

steps:
- name: "checkout repo"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/gen_windows_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
CARGO_INCREMENTAL: "0"
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
RUSTUP_WINDOWS_PATH_ADD_BIN: "1"

steps:
- name: "checkout repo"
Expand Down
2 changes: 2 additions & 0 deletions ci/generate-workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -832,6 +832,8 @@ def global_env(self):
self.env["MACOSX_DEPLOYMENT_TARGET"] = "10.9"
if "alpine" in self.name:
self.env["RUSTFLAGS"] = "-C target-feature=-crt-static"
if "win" in self.name:
self.env["RUSTUP_WINDOWS_PATH_ADD_BIN"] = "1"
return

def prep_environment(self, cache=True):
Expand Down

0 comments on commit 40d5ab7

Please sign in to comment.