diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2020-07-28 15:31:22 +0200 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2020-07-29 11:23:34 -0700 |
commit | 1f7f076189442d0fa7a345075bd25a4640cf43bc (patch) | |
tree | 15db82986f78b6b51213f17a6b9a49fc928ae3c2 /.github/workflows/macos_unit_tests.yaml | |
parent | 90648bb477dd76284acc059eb90b6abc7b7d45e6 (diff) | |
download | spack-1f7f076189442d0fa7a345075bd25a4640cf43bc.tar.gz spack-1f7f076189442d0fa7a345075bd25a4640cf43bc.tar.bz2 spack-1f7f076189442d0fa7a345075bd25a4640cf43bc.tar.xz spack-1f7f076189442d0fa7a345075bd25a4640cf43bc.zip |
Group tests with similar duration together
Style and documentation tests take just a few minutes
to run. Since in Github actions one can't restart a single
job but needs to restart an entire workflow, here we group
tests with similar duration together.
Diffstat (limited to '.github/workflows/macos_unit_tests.yaml')
-rw-r--r-- | .github/workflows/macos_unit_tests.yaml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/.github/workflows/macos_unit_tests.yaml b/.github/workflows/macos_unit_tests.yaml index f1e856070c..ba275b711d 100644 --- a/.github/workflows/macos_unit_tests.yaml +++ b/.github/workflows/macos_unit_tests.yaml @@ -11,18 +11,12 @@ on: - releases/** jobs: build: - runs-on: macos-latest - strategy: - matrix: - python-version: [3.7] - steps: - uses: actions/checkout@v2 - - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + - uses: actions/setup-python@v2 with: - python-version: ${{ matrix.python-version }} + python-version: 3.7 - name: Install Python packages run: | pip install --upgrade pip six setuptools |