diff options
| author | Michael Hirsch <scivision@users.noreply.github.com> | 2020-09-02 23:43:40 -0400 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-09-06 20:27:40 +0300 |
| commit | 011210ee147e9786949146a618e5f565c3e76812 (patch) | |
| tree | 7543042a174be0128f6c3832e250f14f75faff70 /.github/workflows/ci_frameworks.yml | |
| parent | 28f15390b97330ac8d653ea49008ef64e1eafb2b (diff) | |
| download | meson-011210ee147e9786949146a618e5f565c3e76812.tar.gz | |
ci: update to use latest recommendations
Diffstat (limited to '.github/workflows/ci_frameworks.yml')
| -rw-r--r-- | .github/workflows/ci_frameworks.yml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/ci_frameworks.yml b/.github/workflows/ci_frameworks.yml index 12d41f859..172c12cf1 100644 --- a/.github/workflows/ci_frameworks.yml +++ b/.github/workflows/ci_frameworks.yml @@ -17,14 +17,14 @@ jobs: scalapackMacOS: runs-on: macos-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-python@v1 + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 with: python-version: '3.x' - run: python -m pip install -e . - run: brew install pkg-config ninja gcc openmpi lapack scalapack - run: meson setup "test cases/frameworks/30 scalapack" build - - run: ninja -C build + - run: meson compile -C build - uses: actions/upload-artifact@v1 if: failure() with: @@ -40,14 +40,14 @@ jobs: HDF5macos: runs-on: macos-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-python@v1 + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 with: python-version: '3.x' - run: python -m pip install -e . - run: brew install pkg-config ninja gcc hdf5 - run: meson setup "test cases/frameworks/25 hdf5" build - - run: ninja -C build + - run: meson compile -C build - uses: actions/upload-artifact@v1 if: failure() with: @@ -63,8 +63,8 @@ jobs: Qt4macos: runs-on: macos-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-python@v1 + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 with: python-version: '3.x' - run: python -m pip install -e . @@ -72,7 +72,7 @@ jobs: - run: brew tap cartr/qt4 - run: brew install qt@4 - run: meson setup "test cases/frameworks/4 qt" build -Drequired=qt4 - - run: ninja -C build + - run: meson compile -C build - uses: actions/upload-artifact@v1 if: failure() with: |
