diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2020-08-01 00:01:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-31 15:01:12 -0700 |
commit | 9dbad500bc66b9a7cae41e3c3a04ac112440dbb9 (patch) | |
tree | 9e39a2a8007a3bb1bdb274f9b287264a2111adca /.travis.yml | |
parent | 4aaa39d091c0490d7634dfb48cc52f42ce3a1397 (diff) | |
download | spack-9dbad500bc66b9a7cae41e3c3a04ac112440dbb9.tar.gz spack-9dbad500bc66b9a7cae41e3c3a04ac112440dbb9.tar.bz2 spack-9dbad500bc66b9a7cae41e3c3a04ac112440dbb9.tar.xz spack-9dbad500bc66b9a7cae41e3c3a04ac112440dbb9.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 '.travis.yml')
-rw-r--r-- | .travis.yml | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 808e79bbff..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,60 +0,0 @@ -# Only build releases and develop on push; do not build every branch. -branches: - only: - - develop - - /^releases\/.*$/ - -language: python -python: '2.6' -dist: trusty -os: linux -addons: - apt: - packages: - - gfortran - - graphviz - - gnupg2 - - kcov - - mercurial - - ninja-build - - realpath - - zsh - - fish - -before_install: - - if [[ "$TRAVIS_DIST" == "trusty" ]]; then - share/spack/qa/install_patchelf.sh; - else - sudo apt-get update; - sudo apt-get -y install patchelf; - fi - -# Install various dependencies -install: - - pip install --upgrade pip - - pip install --upgrade six - - pip install --upgrade setuptools - - pip install --upgrade flake8 - - pip install --upgrade pep8-naming - -before_script: - # Need this for the git tests to succeed. - - git config --global user.email "spack@example.com" - - git config --global user.name "Test User" - - # Need this to be able to compute the list of changed files - - git fetch origin ${TRAVIS_BRANCH}:${TRAVIS_BRANCH} - -script: - - python bin/spack -h - - python bin/spack help -a - - python bin/spack -p --lines 20 spec mpileaks%gcc ^elfutils@0.170 - - python bin/spack test -x --verbose - -notifications: - email: - recipients: - - tgamblin@llnl.gov - - massimiliano.culpo@gmail.com - on_success: change - on_failure: always |