diff --git a/.github/workflows/gen_windows.yml b/.github/workflows/gen_windows.yml index b362585ac..c0015d69f 100644 --- a/.github/workflows/gen_windows.yml +++ b/.github/workflows/gen_windows.yml @@ -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: | diff --git a/.github/workflows/gen_windows_continuous.yml b/.github/workflows/gen_windows_continuous.yml index 4579abcce..10b1aad45 100644 --- a/.github/workflows/gen_windows_continuous.yml +++ b/.github/workflows/gen_windows_continuous.yml @@ -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: | diff --git a/.github/workflows/gen_windows_tag.yml b/.github/workflows/gen_windows_tag.yml index fec211862..2d0117acb 100644 --- a/.github/workflows/gen_windows_tag.yml +++ b/.github/workflows/gen_windows_tag.yml @@ -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: | diff --git a/ci/generate-workflows.py b/ci/generate-workflows.py index ed37dc57e..803a82729 100755 --- a/ci/generate-workflows.py +++ b/ci/generate-workflows.py @@ -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%