Skip to content

Commit b107b74

Browse files
committed
Replace shell: cmd with shell: pwsh
1 parent 1399a78 commit b107b74

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/tail-call.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181

8282
- name: Native Windows MSVC (release)
8383
if: runner.os == 'Windows' && matrix.architecture != 'ARM64'
84-
shell: cmd
84+
shell: pwsh
8585
run: |
8686
choco install visualstudio2026buildtools --no-progress -y --force --params "--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --locale en-US --passive"
8787
$env:PATH = "C:\Program Files (x86)\Microsoft Visual Studio\18\BuildTools\MSBuild\Current\bin;$env:PATH"
@@ -91,12 +91,12 @@ jobs:
9191
# No tests (yet):
9292
- name: Emulated Windows Clang (release)
9393
if: runner.os == 'Windows' && matrix.architecture == 'ARM64'
94-
shell: cmd
94+
shell: pwsh
9595
run: |
9696
choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}.1.0
97-
set PlatformToolset=clangcl
98-
set LLVMToolsVersion=${{ matrix.llvm }}.1.0
99-
set LLVMInstallDir=C:\Program Files\LLVM
97+
$env:PlatformToolset = "clangcl"
98+
$env:LLVMToolsVersion = "${{ matrix.llvm }}.1.0"
99+
$env:LLVMInstallDir = "C:\Program Files\LLVM"
100100
./PCbuild/build.bat --tail-call-interp -p ${{ matrix.architecture }}
101101
102102
- name: Native macOS (release)

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ repos:
9595
- id: actionlint
9696

9797
- repo: https://github.com/woodruffw/zizmor-pre-commit
98-
rev: v1.14.1
98+
rev: v1.19.0
9999
hooks:
100100
- id: zizmor
101101

0 commit comments

Comments
 (0)