Skip to content

Commit

Permalink
add ancient bash (3.2) to travis matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoblitt committed Sep 21, 2017
1 parent a9dc5c8 commit 001478c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ addons:
- tcsh
script: |
set -e
if [[ $ANCIENT_BASH == true ]]; then
VER=bash-3.2.57
curl -sSLO "http://ftp.gnu.org/gnu/bash/${VER}.tar.gz"
tar -xf "${VER}.tar.gz"
cd "$VER"
./configure
make -j
export PATH="$(pwd):$PATH"
cd ..
bash --version
fi
if [[ $BATCH == true ]]; then
echo -e "*** testing batch mode in Python version $PYVER ***\n"
bash -x ./scripts/newinstall.sh -cb -${PYVER}
Expand All @@ -39,6 +50,8 @@ env:
- BATCH=true PYVER="3"
- BATCH=false PYVER="2"
- BATCH=false PYVER="3"
- BATCH=true PYVER="3" ANCIENT_BASH="true"
- BATCH=false PYVER="3" ANCIENT_BASH="true"
- MANGLER=tcsh BATCH=true PYVER="3"
matrix:
# osx builds are often very slow to start due to high demand
Expand Down

0 comments on commit 001478c

Please sign in to comment.