summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@gmail.com>2021-12-22 10:46:09 +0100
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2021-12-23 16:45:06 +0100
commit82bdda9a891b0114accfe426bda14191af0dc5dd (patch)
tree0595b4613d2cb4ec792a8e34fa470dbf64d8318f /.github/workflows
parentafd65a4cd0ce793680561e7ba3c9f0fb15b1852c (diff)
downloadspack-82bdda9a891b0114accfe426bda14191af0dc5dd.tar.gz
spack-82bdda9a891b0114accfe426bda14191af0dc5dd.tar.bz2
spack-82bdda9a891b0114accfe426bda14191af0dc5dd.tar.xz
spack-82bdda9a891b0114accfe426bda14191af0dc5dd.zip
Reduce the unit tests jobs for the original concretizer
Only test Python 2.7, 3.6 and 3.9
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/unit_tests.yaml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml
index 3d7fc326f7..a1cd2bbd42 100644
--- a/.github/workflows/unit_tests.yaml
+++ b/.github/workflows/unit_tests.yaml
@@ -97,7 +97,14 @@ jobs:
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
- concretizer: ['original', 'clingo']
+ concretizer: ['clingo']
+ include:
+ - python-version: 2.7
+ concretizer: original
+ - python-version: 3.6
+ concretizer: original
+ - python-version: 3.9
+ concretizer: original
steps:
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2
with: