summaryrefslogtreecommitdiff
path: root/.github/workflows/linux_build_tests.yaml
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@gmail.com>2020-07-29 10:18:20 +0200
committerPeter Scheibel <scheibel1@llnl.gov>2020-07-29 11:23:34 -0700
commitc4f29c63844b6eaf5eae03f6749639f04bf19f72 (patch)
treeb166147c3e7f18f21cc5231fd3a2de0d1c62bc75 /.github/workflows/linux_build_tests.yaml
parent1f7f076189442d0fa7a345075bd25a4640cf43bc (diff)
downloadspack-c4f29c63844b6eaf5eae03f6749639f04bf19f72.tar.gz
spack-c4f29c63844b6eaf5eae03f6749639f04bf19f72.tar.bz2
spack-c4f29c63844b6eaf5eae03f6749639f04bf19f72.tar.xz
spack-c4f29c63844b6eaf5eae03f6749639f04bf19f72.zip
Simplified YAML files for Github Actions workflows
Updated actions where needed
Diffstat (limited to '.github/workflows/linux_build_tests.yaml')
-rw-r--r--.github/workflows/linux_build_tests.yaml8
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/linux_build_tests.yaml b/.github/workflows/linux_build_tests.yaml
index 3f5c575df3..d09c942966 100644
--- a/.github/workflows/linux_build_tests.yaml
+++ b/.github/workflows/linux_build_tests.yaml
@@ -23,23 +23,19 @@ on:
jobs:
build:
-
runs-on: ubuntu-latest
strategy:
- max-parallel: 4
matrix:
package: [lz4, mpich, tut, py-setuptools, openjpeg, r-rcpp]
steps:
- uses: actions/checkout@v2
- - name: Cache ccache's store
- uses: actions/cache@v1
+ - uses: actions/cache@v2
with:
path: ~/.ccache
key: ccache-build-${{ matrix.package }}
restore-keys: |
ccache-build-${{ matrix.package }}
- - name: Setup Python
- uses: actions/setup-python@v1
+ - uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install System Packages