diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2020-08-01 00:01:12 +0200 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2020-08-13 00:33:31 -0700 |
commit | 1707448fdee1326f2b63c3d41b643442f9e7679d (patch) | |
tree | 0a47c702e42a13d2c834c9dd78668c4f5d69112c /share | |
parent | 4d25481473120303ceab42c3f7a675d0b90afcd0 (diff) | |
download | spack-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 '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 |