Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Downgrade from macOS 14 runner (with Arm M1) to macOS 13 (with x86) #540

Merged
merged 1 commit into from
May 14, 2024
Merged
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
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
Loading