Skip to content
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
15 changes: 8 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
config:
# if there are multiple items in this list, only use should
# deployit=true for just one of them.
- {grb_version: 9.0.0, deployit: false}
- {grb_version: 10.1.0, deployit: true}
#- {grb_version: 9.0.0, deployit: false}
- {grb_version: 10.3.0, deployit: true}

steps:

- name: Checkout
uses: actions/checkout@v2.0.0
uses: actions/checkout@v7

- name: Install tools for build
run: |
Expand Down Expand Up @@ -68,19 +68,20 @@ jobs:
strategy:
matrix:
config:
- {grb_version: 9.0.0}
- {grb_version: 10.1.0}
# - {grb_version: 9.0.0}
- {grb_version: 10.3.0}

steps:

- name: Checkout
uses: actions/checkout@v2.0.0
uses: actions/checkout@v7

- name: Install dependencies
run: |
brew uninstall cmake
brew tap-new libomp/cask
brew extract --version=14.0.6 libomp libomp/cask
brew trust libomp/cask
brew install libomp@14.0.6

- name: Build GraphBLAS
Expand All @@ -99,5 +100,5 @@ jobs:
cd build
cmake ..
JOBS=2 make
ctest .
ctest . --rerun-failed --output-on-failure

Loading