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 /share | |
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 'share')
-rwxr-xr-x | share/spack/qa/install_patchelf.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/share/spack/qa/install_patchelf.sh b/share/spack/qa/install_patchelf.sh deleted file mode 100755 index 7660ba8eef..0000000000 --- a/share/spack/qa/install_patchelf.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -# -# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other -# Spack Project Developers. See the top-level COPYRIGHT file for details. -# -# SPDX-License-Identifier: (Apache-2.0 OR MIT) - -# -# Description: -# Install patchelf for use in buildcache unit tests -# -# Usage: -# install-patchelf.sh -# -set -ex -if [ "$TRAVIS_OS_NAME" = "linux" ]; then - olddir=$PWD - cd /tmp - wget https://github.com/NixOS/patchelf/archive/0.10.tar.gz - tar -xvf 0.10.tar.gz - cd patchelf-0.10 && ./bootstrap.sh && ./configure --prefix=/usr && make && sudo make install && cd $olddir -fi |