Skip to content

Commit da1adaf

Browse files
committed
revert to cmd but keep Hugo's other changes
add --no-progress to choco
1 parent a04824f commit da1adaf

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/tail-call.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ jobs:
5353
- target: x86_64-pc-windows-msvc/msvc
5454
architecture: x64
5555
runner: windows-2022
56-
- target: aarch64-pc-windows-msvc/msvc
57-
architecture: ARM64
58-
runner: windows-2022
56+
# - target: aarch64-pc-windows-msvc/msvc
57+
# architecture: ARM64
58+
# runner: windows-2022
5959
- target: x86_64-apple-darwin/clang
6060
architecture: x86_64
6161
runner: macos-15-intel
@@ -81,17 +81,17 @@ jobs:
8181

8282
- name: Native Windows MSVC (release)
8383
if: runner.os == 'Windows' && matrix.architecture != 'ARM64'
84-
shell: pwsh
84+
shell: cmd
8585
run: |
86-
choco install visualstudio2026buildtools -y --force --params "--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --locale en-US --passive"
87-
set PATH=C:\Program Files (x86)\Microsoft Visual Studio\18\BuildTools\MSBuild\Current\bin;%PATH%
86+
choco install visualstudio2026buildtools --no-progress -y --force --params "--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --locale en-US --passive"
87+
$env:PATH = "C:\Program Files (x86)\Microsoft Visual Studio\18\BuildTools\MSBuild\Current\bin;$env:PATH"
8888
./PCbuild/build.bat --tail-call-interp -c Release -p ${{ matrix.architecture }} "/p:PlatformToolset=v145"
8989
./PCbuild/rt.bat -p ${{ matrix.architecture }} -q --multiprocess 0 --timeout 4500 --verbose2 --verbose3
9090
9191
# No tests (yet):
9292
- name: Emulated Windows Clang (release)
9393
if: runner.os == 'Windows' && matrix.architecture == 'ARM64'
94-
shell: pwsh
94+
shell: cmd
9595
run: |
9696
choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}.1.0
9797
set PlatformToolset=clangcl

0 commit comments

Comments
 (0)