Skip to content

Commit 4eadc8a

Browse files
committed
Switch GitHub CI jobs from macos-11 to macos-13
macos-11 will no longer be available as a runner after 28 June 2024.
1 parent be17acf commit 4eadc8a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -583,8 +583,8 @@ jobs:
583583
run: cd build; ctest . -V -L THOROUGH -j2
584584

585585
# This job takes approximately 39 to 69 minutes
586-
check-macos-11-make-clang:
587-
runs-on: macos-11
586+
check-macos-13-make-clang:
587+
runs-on: macos-13
588588
steps:
589589
- uses: actions/checkout@v4
590590
with:
@@ -617,8 +617,8 @@ jobs:
617617
- name: Build using Make
618618
run: |
619619
make -C src minisat2-download cadical-download
620-
make -C src -j3 CXX="ccache clang++" MINISAT2=../../minisat-2.2.1 CADICAL=../../cadical
621-
make -C jbmc/src -j3 CXX="ccache clang++"
620+
make -C src -j4 CXX="ccache clang++" MINISAT2=../../minisat-2.2.1 CADICAL=../../cadical
621+
make -C jbmc/src -j4 CXX="ccache clang++"
622622
make -C unit "CXX=ccache clang++"
623623
make -C jbmc/unit "CXX=ccache clang++"
624624
- name: Print ccache stats
@@ -630,9 +630,9 @@ jobs:
630630
- name: Run JBMC unit tests
631631
run: cd jbmc/unit; ./unit_tests
632632
- name: Run regression tests
633-
run: make -C regression test-parallel JOBS=3
633+
run: make -C regression test-parallel JOBS=4
634634
- name: Run JBMC regression tests
635-
run: make -C jbmc/regression test-parallel JOBS=3
635+
run: make -C jbmc/regression test-parallel JOBS=4
636636

637637
# This job takes approximately 66 to 85 minutes
638638
check-macos-12-cmake-clang:

.github/workflows/release-packages.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
SLACK_MESSAGE: "${{ job.status == 'success' && 'Ubuntu 20.04 package built and uploaded successfully' || 'Ubuntu 20.04 package build failed' }}"
153153

154154
homebrew-pr:
155-
runs-on: macos-11
155+
runs-on: macos-13
156156
steps:
157157
- name: Get release tag name
158158
# The GITHUB_REF we get has refs/tags/ in front of the tag name so we

0 commit comments

Comments
 (0)