Skip to content

Commit

Permalink
test Ubuntu with gcc-9
Browse files Browse the repository at this point in the history
  • Loading branch information
sfarrens committed Oct 19, 2024
1 parent 39e7af4 commit 16ab509
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/ci-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:

- name: Install Linux dependencies
if: runner.os == 'Linux'
run: sudo apt-get install libopenblas-dev
run: |
sudo apt-get install libopenblas-dev gcc-9 g++-9
- name: Install macOS Dependencies
shell: bash -l {0}
Expand All @@ -40,10 +42,18 @@ jobs:
auto-activate-base: true
miniforge-version: latest

- name: Install package
- name: Install package (Linux)
shell: bash -l {0}
run: |
./install_shapepipe --env-dev --develop
env:
CC: gcc-9
CXX: g++-9
if: runner.os == 'Linux'
run: ./install_shapepipe --env-dev --develop

- name: Install package (macOS)
shell: bash -l {0}
if: runner.os == 'macOS'
run: ./install_shapepipe --env-dev --develop

- name: Run tests
shell: bash -l {0}
Expand Down

0 comments on commit 16ab509

Please sign in to comment.