Skip to content

Commit

Permalink
revise autotest conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
solomonik committed Aug 29, 2022
1 parent 9922b70 commit 7db4065
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/autotest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,19 @@ jobs:
run: |
brew install gcc mpich

- name: Configure Cyclops
- name: Configure Cyclops and Build Scalapack
if: matrix.config.build_scalapack
shell: bash
run:
if: ${{ matrix.config.build_scalapack }}
./configure --build-scalapack
else:

- name: Configure Cyclops without Scalapack
if: ! matrix.config.build_scalapack
shell: bash
run:
./configure


- name: Build Cyclops
shell: bash
run:
Expand Down

0 comments on commit 7db4065

Please sign in to comment.