1
1
mirror of https://github.com/wez/wezterm.git synced 2024-08-16 09:40:34 +03:00

ci: another attempt at fixing up windows path

This commit is contained in:
Wez Furlong 2024-04-05 18:09:10 -07:00
parent 9b082e5355
commit cce0706b1f
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
4 changed files with 6 additions and 7 deletions

View File

@ -73,7 +73,7 @@ jobs:
crate: "cargo-nextest"
cache-key: "windows"
- name: "Test"
shell: bash
shell: cmd
run: |
PATH C:\Strawberry\perl\bin;%PATH%
cargo nextest run --all --no-fail-fast

View File

@ -76,7 +76,7 @@ jobs:
crate: "cargo-nextest"
cache-key: "windows"
- name: "Test"
shell: bash
shell: cmd
run: |
PATH C:\Strawberry\perl\bin;%PATH%
cargo nextest run --all --no-fail-fast

View File

@ -63,7 +63,7 @@ jobs:
crate: "cargo-nextest"
cache-key: "windows"
- name: "Test"
shell: bash
shell: cmd
run: |
PATH C:\Strawberry\perl\bin;%PATH%
cargo nextest run --all --no-fail-fast

View File

@ -480,10 +480,9 @@ rustup default {toolchain}
# Install cargo-nextest
InstallCrateStep("cargo-nextest", key=self.name),
# Run tests
RunStep(
name="Test",
run=self.fixup_windows_path(run),
),
RunStep(name="Test", run=self.fixup_windows_path(run), shell="cmd")
if "win" in self.name
else RunStep(name="Test", run=run),
]
def package(self, trusted=False):