summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@gmail.com>2020-08-01 00:01:12 +0200
committerTodd Gamblin <tgamblin@llnl.gov>2020-08-13 00:33:31 -0700
commit1707448fdee1326f2b63c3d41b643442f9e7679d (patch)
tree0a47c702e42a13d2c834c9dd78668c4f5d69112c /.github
parent4d25481473120303ceab42c3f7a675d0b90afcd0 (diff)
downloadspack-1707448fdee1326f2b63c3d41b643442f9e7679d.tar.gz
spack-1707448fdee1326f2b63c3d41b643442f9e7679d.tar.bz2
spack-1707448fdee1326f2b63c3d41b643442f9e7679d.tar.xz
spack-1707448fdee1326f2b63c3d41b643442f9e7679d.zip
Move Python 2.6 unit tests to Github Actions (#17279)
* Run Python2.6 unit tests on Github Actions * Skip url tests on Python 2.6 to reduce waiting times * Skip foreground background tests on Python 2.6 to reduce waiting times * Removed references to Travis in the documentation * Deleted install_patchelf.sh (can be installed from repo on CentOS 6)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux_unit_tests.yaml17
1 files changed, 15 insertions, 2 deletions
diff --git a/.github/workflows/linux_unit_tests.yaml b/.github/workflows/linux_unit_tests.yaml
index f1def14b6f..cf5d8660c2 100644
--- a/.github/workflows/linux_unit_tests.yaml
+++ b/.github/workflows/linux_unit_tests.yaml
@@ -3,13 +3,12 @@ name: linux tests
on:
push:
branches:
- - master
- develop
- releases/**
pull_request:
branches:
- - master
- develop
+ - releases/**
jobs:
unittests:
runs-on: ubuntu-latest
@@ -99,3 +98,17 @@ jobs:
- uses: codecov/codecov-action@v1
with:
flags: shelltests,linux
+ centos6:
+ # Test for Python2.6 run on Centos 6
+ runs-on: ubuntu-latest
+ container: spack/github-actions:centos6
+ steps:
+ - name: Run unit tests
+ env:
+ HOME: /home/spack-test
+ run: |
+ whoami && echo $HOME && cd $HOME
+ git clone https://github.com/spack/spack.git && cd spack
+ git fetch origin ${{ github.ref }}:test-branch
+ git checkout test-branch
+ share/spack/qa/run-unit-tests