1
1
mirror of https://github.com/wez/wezterm.git synced 2024-08-17 02:00:25 +03:00

ci: include the bin name in the step name on windows

This commit is contained in:
Wez Furlong 2024-04-05 14:20:24 -07:00
parent 668ac85d75
commit 58cd230a45
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
4 changed files with 13 additions and 13 deletions

View File

@ -47,25 +47,25 @@ jobs:
if: steps.cache-cargo-vendor.outputs.cache-hit != 'true'
shell: bash
run: "cargo vendor --locked --versioned-dirs >> .cargo/config"
- name: "Build (Release mode)"
- name: "Build wezterm (Release mode)"
shell: cmd
run: |
PATH C:\Strawberry\perl\bin;%PATH%
cargo build -p wezterm --release
- name: "Build (Release mode)"
- name: "Build wezterm-gui (Release mode)"
shell: cmd
run: |
PATH C:\Strawberry\perl\bin;%PATH%
cargo build -p wezterm-gui --release
- name: "Build (Release mode)"
- name: "Build wezterm-mux-server (Release mode)"
shell: cmd
run: |
PATH C:\Strawberry\perl\bin;%PATH%
cargo build -p wezterm-mux-server --release
- name: "Build (Release mode)"
- name: "Build strip-ansi-escapes (Release mode)"
shell: cmd
run: |

View File

@ -50,25 +50,25 @@ jobs:
if: steps.cache-cargo-vendor.outputs.cache-hit != 'true'
shell: bash
run: "cargo vendor --locked --versioned-dirs >> .cargo/config"
- name: "Build (Release mode)"
- name: "Build wezterm (Release mode)"
shell: cmd
run: |
PATH C:\Strawberry\perl\bin;%PATH%
cargo build -p wezterm --release
- name: "Build (Release mode)"
- name: "Build wezterm-gui (Release mode)"
shell: cmd
run: |
PATH C:\Strawberry\perl\bin;%PATH%
cargo build -p wezterm-gui --release
- name: "Build (Release mode)"
- name: "Build wezterm-mux-server (Release mode)"
shell: cmd
run: |
PATH C:\Strawberry\perl\bin;%PATH%
cargo build -p wezterm-mux-server --release
- name: "Build (Release mode)"
- name: "Build strip-ansi-escapes (Release mode)"
shell: cmd
run: |

View File

@ -37,25 +37,25 @@ jobs:
if: steps.cache-cargo-vendor.outputs.cache-hit != 'true'
shell: bash
run: "cargo vendor --locked --versioned-dirs >> .cargo/config"
- name: "Build (Release mode)"
- name: "Build wezterm (Release mode)"
shell: cmd
run: |
PATH C:\Strawberry\perl\bin;%PATH%
cargo build -p wezterm --release
- name: "Build (Release mode)"
- name: "Build wezterm-gui (Release mode)"
shell: cmd
run: |
PATH C:\Strawberry\perl\bin;%PATH%
cargo build -p wezterm-gui --release
- name: "Build (Release mode)"
- name: "Build wezterm-mux-server (Release mode)"
shell: cmd
run: |
PATH C:\Strawberry\perl\bin;%PATH%
cargo build -p wezterm-mux-server --release
- name: "Build (Release mode)"
- name: "Build strip-ansi-escapes (Release mode)"
shell: cmd
run: |

View File

@ -436,7 +436,7 @@ rustup default {toolchain}
if "win" in self.name:
steps += [
RunStep(
name="Build (Release mode)",
name=f"Build {bin} (Release mode)",
shell="cmd",
run=f"""
PATH C:\\Strawberry\\perl\\bin;%PATH%