Skip to content

Commit

Permalink
Fix Windows CI.
Browse files Browse the repository at this point in the history
It's currently failing when running tests with errors of the form:

> error: creating test list failed
>
> Caused by:
>   for `wezterm-config-derive`, command
>   `'D:\a\wezterm\wezterm\target\debug\deps\wezterm_config_derive-f1c7f0f2de220b6e.exe'
>   --list --format terse` exited with code 0xc0000135: The specified
>   module could not be found. (os error 126)

This seems to have been caused by nextest-rs/nextest#1493, with this comment
as a fix: nextest-rs/nextest#1493 (comment)
  • Loading branch information
bogdan2412 authored and wez committed May 20, 2024
1 parent 6fe1d4d commit 993eb9f
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 @@ -812,6 +812,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 993eb9f

Please sign in to comment.