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
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-13, c_compiler: clang, cpp_compiler: clang++},
{os: macos-15-intel, 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-13' }}
if: ${{ matrix.config.os == 'macos-15-intel' }}

- 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-13' }}
if: ${{ matrix.config.os == 'macos-15-intel' }}

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

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

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

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

build_windows:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
config: [
{name: linux, os: ubuntu-20.04, arch: x86_64, c_compiler: gcc-9, cpp_compiler: g++-9},
{name: macos, os: macos-11, arch: x86_64, c_compiler: clang, cpp_compiler: clang++},
{name: macos, os: macos-15-intel, arch: x86_64, c_compiler: clang, cpp_compiler: clang++},
]

runs-on: ${{ matrix.config.os }}
Expand Down
Loading