Skip to content

Commit bddfc6a

Browse files
committed
Stop using GNU parallel on windows-2022 runner
This reverts commit 7b4da6c: it seems that with some change that occurred between 2025-06-25 and 2025-06-26 for the windows-2022 runner the use of GNU parallel is no longer possible: even with `--jobs 1` it blocks as soon as `parallel ...` is called.
1 parent 5d1438a commit bddfc6a

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ jobs:
799799
Set-Location build
800800
ctest -V -L CORE -C Release . -j${{env.windows-vcpus}}
801801
802-
# This job takes approximately 18 to 84 minutes
802+
# This job takes approximately 65 to 84 minutes
803803
check-vs-2022-make-build-and-test:
804804
runs-on: windows-2022
805805
env:
@@ -829,9 +829,6 @@ jobs:
829829
Expand-Archive -LiteralPath '.\cvc5-Win64-x86_64-static.Zip'
830830
Move-Item -Path .\cvc5-Win64-x86_64-static\cvc5-Win64-x86_64-static\bin\cvc5.exe c:\tools\cvc5\cvc5.exe
831831
echo "c:\tools\cvc5;" >> $env:GITHUB_PATH
832-
New-Item -ItemType directory "C:\tools\parallel"
833-
wget.exe -O c:\tools\parallel\parallel https://raw.githubusercontent.com/martinda/gnu-parallel/refs/heads/master/src/parallel
834-
echo "c:\tools\parallel" >> $env:GITHUB_PATH
835832
- name: Confirm z3 solver is available and log the version installed
836833
run: z3 --version
837834
- name: Confirm cvc5 solver is available and log the version installed
@@ -875,7 +872,7 @@ jobs:
875872
make CXX=clcache BUILD_ENV=MSVC -C unit test TAGS="[z3]"
876873
make CXX=clcache BUILD_ENV=MSVC -C jbmc/unit test
877874
- name: Run CBMC regression tests
878-
run: make CXX=clcache BUILD_ENV=MSVC -C regression test-parallel JOBS=${{env.windows-vcpus}}
875+
run: make CXX=clcache BUILD_ENV=MSVC -C regression test
879876

880877
# This job takes approximately 7 to 32 minutes
881878
windows-msi-package:

0 commit comments

Comments
 (0)