Skip to content

Commit 2bec4b2

Browse files
authored
Update to macOS-15 (#651)
* Update to macos-15 * Use the x86-64 versions of macOS runners
1 parent ac8c4aa commit 2bec4b2

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build_and_test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
config: [
1414
{os: ubuntu-latest, c_compiler: gcc, cpp_compiler: g++},
1515
{os: ubuntu-latest, c_compiler: clang, cpp_compiler: clang++},
16-
{os: macos-13, c_compiler: clang, cpp_compiler: clang++},
16+
{os: macos-15-intel, c_compiler: clang, cpp_compiler: clang++},
1717
]
1818
runs-on: ${{ matrix.config.os }}
1919
steps:
@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: Install requirements for macOS
2929
run: brew install ninja
30-
if: ${{ matrix.config.os == 'macos-13' }}
30+
if: ${{ matrix.config.os == 'macos-15-intel' }}
3131

3232
- name: Run CMake
3333
run: |
@@ -40,23 +40,23 @@ jobs:
4040

4141
- name: Get the diagnostics info
4242
run: ./build/clblast_test_diagnostics
43-
if: ${{ matrix.config.os == 'macos-13' }}
43+
if: ${{ matrix.config.os == 'macos-15-intel' }}
4444

4545
- name: Run an example client
4646
run: ./build/clblast_client_xgemm
47-
if: ${{ matrix.config.os == 'macos-13' }}
47+
if: ${{ matrix.config.os == 'macos-15-intel' }}
4848

4949
- name: Run an example sample program
5050
run: ./build/clblast_sample_dgemv_c
51-
if: ${{ matrix.config.os == 'macos-13' }}
51+
if: ${{ matrix.config.os == 'macos-15-intel' }}
5252

5353
- name: Run an example tuner
5454
run: ./build/clblast_tuner_xdot
55-
if: ${{ matrix.config.os == 'macos-13' }}
55+
if: ${{ matrix.config.os == 'macos-15-intel' }}
5656

5757
- name: Run the unittests
5858
run: ctest --test-dir build
59-
if: ${{ matrix.config.os == 'macos-13' }}
59+
if: ${{ matrix.config.os == 'macos-15-intel' }}
6060

6161
build_windows:
6262

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
config: [
1818
{name: linux, os: ubuntu-20.04, arch: x86_64, c_compiler: gcc-9, cpp_compiler: g++-9},
19-
{name: macos, os: macos-11, arch: x86_64, c_compiler: clang, cpp_compiler: clang++},
19+
{name: macos, os: macos-15-intel, arch: x86_64, c_compiler: clang, cpp_compiler: clang++},
2020
]
2121

2222
runs-on: ${{ matrix.config.os }}

0 commit comments

Comments
 (0)