Skip to content

Commit 161bf61

Browse files
committed
CI Replace Homebrew clang-15 wth Apple clang16
1 parent 9901b01 commit 161bf61

File tree

128 files changed

+8
-9
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+8
-9
lines changed

.github/workflows/regression-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,19 @@ jobs:
5555
compiler: clang++-12
5656
cxx_std: c++20
5757
stdlib: libstdc++
58-
- os: macos-14
59-
shortosname: mac-14
58+
- os: macos-15
59+
shortosname: mac-15
6060
compiler: clang++
6161
cxx_std: c++2b
6262
stdlib: default
63-
- os: macos-13
64-
shortosname: mac-13
63+
- os: macos-14
64+
shortosname: mac-14
6565
compiler: clang++
6666
cxx_std: c++2b
6767
stdlib: default
6868
- os: macos-13
6969
shortosname: mac-13
70-
compiler: clang++-15
70+
compiler: clang++
7171
cxx_std: c++2b
7272
stdlib: default
7373
- os: windows-2022

regression-tests/run-tests.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,10 @@ else
171171

172172
compiler_version=$("$cxx_compiler" --version)
173173

174-
if [[ "$compiler_version" == *"Apple clang version 14.0"* ||
175-
"$compiler_version" == *"Homebrew clang version 15.0"* ]]; then
174+
if [[ "$compiler_version" == *"Apple clang version 14.0"* ]]; then
176175
exec_out_dir="$expected_results_dir/apple-clang-14"
177-
elif [[ "$compiler_version" == *"Apple clang version 15.0"* ]]; then
178-
exec_out_dir="$expected_results_dir/apple-clang-15"
176+
elif [[ "$compiler_version" == *"Apple clang version 16.0"* ]]; then
177+
exec_out_dir="$expected_results_dir/apple-clang-16"
179178
elif [[ "$compiler_version" == *"clang version 12.0"* ]]; then
180179
exec_out_dir="$expected_results_dir/clang-12"
181180
elif [[ "$compiler_version" == *"clang version 15.0"* ]]; then

regression-tests/test-results/apple-clang-15-c++2b/clang-version.output renamed to regression-tests/test-results/apple-clang-16-c++2b/clang-version.output

File renamed without changes.

regression-tests/test-results/apple-clang-15-c++2b/mixed-allcpp1-hello.cpp.execution renamed to regression-tests/test-results/apple-clang-16-c++2b/mixed-allcpp1-hello.cpp.execution

File renamed without changes.

regression-tests/test-results/apple-clang-15-c++2b/mixed-as-for-variant-20-types.cpp.execution renamed to regression-tests/test-results/apple-clang-16-c++2b/mixed-as-for-variant-20-types.cpp.execution

File renamed without changes.

regression-tests/test-results/apple-clang-15-c++2b/mixed-bounds-check.cpp.execution renamed to regression-tests/test-results/apple-clang-16-c++2b/mixed-bounds-check.cpp.execution

File renamed without changes.

regression-tests/test-results/apple-clang-15-c++2b/mixed-bounds-safety-with-assert-2.cpp.execution renamed to regression-tests/test-results/apple-clang-16-c++2b/mixed-bounds-safety-with-assert-2.cpp.execution

File renamed without changes.

regression-tests/test-results/apple-clang-15-c++2b/mixed-bounds-safety-with-assert.cpp.execution renamed to regression-tests/test-results/apple-clang-16-c++2b/mixed-bounds-safety-with-assert.cpp.execution

File renamed without changes.

regression-tests/test-results/apple-clang-15-c++2b/mixed-captures-in-expressions-and-postconditions.cpp.execution renamed to regression-tests/test-results/apple-clang-16-c++2b/mixed-captures-in-expressions-and-postconditions.cpp.execution

File renamed without changes.

regression-tests/test-results/apple-clang-15-c++2b/mixed-default-arguments.cpp.execution renamed to regression-tests/test-results/apple-clang-16-c++2b/mixed-default-arguments.cpp.execution

File renamed without changes.

0 commit comments

Comments
 (0)