From d8e6d358f5a1fc1a77cc742c379213c9d052f02b Mon Sep 17 00:00:00 2001 From: Tim Davis Date: Mon, 20 Jul 2026 09:15:11 -0500 Subject: [PATCH] fix workflow on macos ... again ... because of changes in brew --- .github/workflows/build.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ff5b7ff06e..e72aecfb18 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: | @@ -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 @@ -99,5 +100,5 @@ jobs: cd build cmake .. JOBS=2 make - ctest . + ctest . --rerun-failed --output-on-failure