Skip to content

Commit

Permalink
Downgrade from macOS 14 runner (with Arm M1) to macOS 13 (with x86) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
CNugteren authored May 14, 2024
1 parent e0c06a9 commit 56a732c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
config: [
{os: ubuntu-latest, c_compiler: gcc, cpp_compiler: g++},
{os: ubuntu-latest, c_compiler: clang, cpp_compiler: clang++},
{os: macos-latest, c_compiler: clang, cpp_compiler: clang++},
{os: macos-13, c_compiler: clang, cpp_compiler: clang++},
]
runs-on: ${{ matrix.config.os }}
steps:
Expand All @@ -27,7 +27,7 @@ jobs:

- name: Install requirements for macOS
run: brew install ninja
if: ${{ matrix.config.os == 'macos-latest' }}
if: ${{ matrix.config.os == 'macos-13' }}

- name: Run CMake
run: |
Expand All @@ -40,23 +40,23 @@ jobs:

- name: Get the diagnostics info
run: ./build/clblast_test_diagnostics
if: ${{ matrix.config.os == 'macos-latest' }}
if: ${{ matrix.config.os == 'macos-13' }}

- name: Run an example client
run: ./build/clblast_client_xgemm
if: ${{ matrix.config.os == 'macos-latest' }}
if: ${{ matrix.config.os == 'macos-13' }}

- name: Run an example sample program
run: ./build/clblast_sample_dgemv_c
if: ${{ matrix.config.os == 'macos-latest' }}
if: ${{ matrix.config.os == 'macos-13' }}

- name: Run an example tuner
run: ./build/clblast_tuner_xdot
if: ${{ matrix.config.os == 'macos-latest' }}
if: ${{ matrix.config.os == 'macos-13' }}

- name: Run the unittests
run: ctest --test-dir build
if: ${{ matrix.config.os == 'macos-latest' }}
if: ${{ matrix.config.os == 'macos-13' }}

build_windows:

Expand Down

0 comments on commit 56a732c

Please sign in to comment.