Skip to content

Commit

Permalink
ci: use installed stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Mar 26, 2020
1 parent 206e290 commit 46a6a1d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
sudo apt install -yq --no-install-recommends gfortran libhdf5-dev
- run: ctest -S setup.cmake -V
env:
FC: gfortran-7

meson:
runs-on: ubuntu-latest
Expand All @@ -39,11 +41,11 @@ jobs:
- run: pip install meson
- run: |
sudo apt update -yq
sudo apt install -yq --no-install-recommends ninja-build gfortran libhdf5-dev
sudo apt install -yq --no-install-recommends gfortran ninja-build libhdf5-dev
- run: meson setup build
env:
FC: gfortran
FC: gfortran-7

- run: ninja -C build

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v2

- run: brew install pkg-config gcc hdf5 ninja
- run: brew install pkg-config hdf5 ninja

- run: ctest -S setup.cmake -V
env:
Expand All @@ -34,7 +34,7 @@ jobs:
python-version: '3.x'

- run: pip install meson
- run: brew install pkg-config gcc hdf5 ninja
- run: brew install pkg-config hdf5 ninja

- run: meson setup build
env:
Expand Down

0 comments on commit 46a6a1d

Please sign in to comment.