Skip to content

Commit d868f46

Browse files
authored
Add MacOS CI for reference implementation. (#42)
1 parent 0312501 commit d868f46

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,12 @@ jobs:
7171
source /opt/intel/oneapi/setvars.sh
7272
./build/test/gtest/spblas-tests
7373
74-
armpl:
74+
macos:
7575
runs-on: 'macos-latest'
76+
strategy:
77+
matrix:
78+
armpl: [OFF, ON]
79+
name: macos${{ matrix.armpl == 'ON' && '-armpl' || '' }}
7680
steps:
7781
- uses: actions/checkout@v4
7882
- name: Set up ArmPL
@@ -82,7 +86,7 @@ jobs:
8286
echo "ARMPL_DIR=$ARMPL_PATH" >> $GITHUB_ENV
8387
- name: CMake
8488
run: |
85-
cmake -B build -DENABLE_ARMPL=ON
89+
cmake -B build -DENABLE_ARMPL=${{ matrix.armpl }}
8690
- name: Build
8791
run: |
8892
make -C build -j 3

0 commit comments

Comments
 (0)