Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pull-request-check-rust-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ jobs:
CBMC_INCLUDE_DIR=../../${{env.default_include_dir}} CBMC_LIB_DIR=../../${{env.default_build_dir}}/lib CBMC_VERSION=$VERSION cargo test -- --test-threads=1


check-macos-13-cmake-clang-rust:
runs-on: macos-13
check-macos-15-intel-cmake-clang-rust:
runs-on: macos-15-intel
steps:
- uses: actions/checkout@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -642,8 +642,8 @@ jobs:
run: cd build; ctest . -V -L THOROUGH -j${{env.linux-vcpus}}

# This job takes approximately 39 to 69 minutes
check-macos-13-make-clang:
runs-on: macos-13
check-macos-15-intel-make-clang:
runs-on: macos-15-intel
steps:
- uses: actions/checkout@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ jobs:
SLACK_MESSAGE: "${{ job.status == 'success' && 'Ubuntu 22.04 package built and uploaded successfully' || 'Ubuntu 22.04 package build failed' }}"

homebrew-pr:
runs-on: macos-13
runs-on: macos-15-intel
steps:
- name: Get release tag name
# The GITHUB_REF we get has refs/tags/ in front of the tag name so we
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc-library/floorl-01/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ int main()
assert(floorl(-1.1l) == -2.0l);
assert(floorl(-1.9l) == -2.0l);

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

Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc-library/roundl-01/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ int main()
assert(roundl(-1.5l) == -2.0l);
assert(roundl(-1.9l) == -2.0l);

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

Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc-library/truncl-01/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ int main()
assert(truncl(-1.1l) == -1.0l);
assert(truncl(-1.9l) == -1.0l);

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

Expand Down
Loading