Skip to content

Commit b6caec4

Browse files
authored
Merge pull request #8725 from tautschnig/macos-15
Switch macos-13 CI jobs to macos-15-intel
2 parents c914c2c + 29dc554 commit b6caec4

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/pull-request-check-rust-api.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ jobs:
6969
CBMC_INCLUDE_DIR=../../${{env.default_include_dir}} CBMC_LIB_DIR=../../${{env.default_build_dir}}/lib CBMC_VERSION=$VERSION cargo test -- --test-threads=1
7070
7171
72-
check-macos-13-cmake-clang-rust:
73-
runs-on: macos-13
72+
check-macos-15-intel-cmake-clang-rust:
73+
runs-on: macos-15-intel
7474
steps:
7575
- uses: actions/checkout@v5
7676
with:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -642,8 +642,8 @@ jobs:
642642
run: cd build; ctest . -V -L THOROUGH -j${{env.linux-vcpus}}
643643

644644
# This job takes approximately 39 to 69 minutes
645-
check-macos-13-make-clang:
646-
runs-on: macos-13
645+
check-macos-15-intel-make-clang:
646+
runs-on: macos-15-intel
647647
steps:
648648
- uses: actions/checkout@v5
649649
with:

.github/workflows/release-packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
SLACK_MESSAGE: "${{ job.status == 'success' && 'Ubuntu 22.04 package built and uploaded successfully' || 'Ubuntu 22.04 package build failed' }}"
221221

222222
homebrew-pr:
223-
runs-on: macos-13
223+
runs-on: macos-15-intel
224224
steps:
225225
- name: Get release tag name
226226
# The GITHUB_REF we get has refs/tags/ in front of the tag name so we

regression/cbmc-library/floorl-01/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ int main()
88
assert(floorl(-1.1l) == -2.0l);
99
assert(floorl(-1.9l) == -2.0l);
1010

11-
#if !defined(__APPLE__) || __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__ >= 150000
11+
#if !defined(__APPLE__) || __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__ >= 160000
1212
assert(signbit(floorl(-0.0l)));
1313
#endif
1414

regression/cbmc-library/roundl-01/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ int main()
1010
assert(roundl(-1.5l) == -2.0l);
1111
assert(roundl(-1.9l) == -2.0l);
1212

13-
#if !defined(__APPLE__) || __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__ >= 150000
13+
#if !defined(__APPLE__) || __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__ >= 160000
1414
assert(signbit(roundl(-0.0l)));
1515
#endif
1616

regression/cbmc-library/truncl-01/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ int main()
88
assert(truncl(-1.1l) == -1.0l);
99
assert(truncl(-1.9l) == -1.0l);
1010

11-
#if !defined(__APPLE__) || __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__ >= 150000
11+
#if !defined(__APPLE__) || __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__ >= 160000
1212
assert(signbit(truncl(-0.0l)));
1313
#endif
1414

0 commit comments

Comments
 (0)