Skip to content

Commit 2f8c9c4

Browse files
committed
Merge pull request #100 from zbeekman/strange-travis-ci-fix
Fix #99 broken travis build
2 parents 6329c51 + d6345b9 commit 2f8c9c4

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.travis.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ language: python
33
python:
44
- 2.7
55

6-
cache: apt
7-
86
# Build matrix: Run the three build systems and tests in parallel
97
env:
108
global:
@@ -35,13 +33,14 @@ env:
3533
FoBiS="no"
3634

3735
before_install:
38-
- ulimit -s unlimited
36+
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
37+
- if [[ $SPECIFIC_DEPENDS == *cmake* ]]; then sudo apt-add-repository -y ppa:kalakris/cmake; fi
38+
- sudo apt-get update -qq
39+
- if [[ $JLINT == [yY]* ]]; then curl -sL https://deb.nodesource.com/setup | sudo bash -x - ; fi
3940
- if [[ $CHECK_README_PROGS == [yY]* ]]; then wget http://people.sc.fsu.edu/~jburkardt/f_src/f90split/f90split.f90; fi
4041
- if [[ $DOCS == [yY]* ]]; then export DEPENDS="$DEPENDS exuberant-ctags"; fi
41-
- sudo apt-add-repository -y ppa:ubuntu-toolchain-r/test
42-
- if [[ $SPECIFIC_DEPENDS == *cmake* ]]; then sudo apt-add-repository -y ppa:kalakris/cmake; fi
43-
- if [[ $JLINT == [yY]* ]]; then curl -sL https://deb.nodesource.com/setup | sudo bash -; else sudo apt-get update -qq; fi
4442
- if [[ $DOCS == [yY]* ]]; then wget http://launchpadlibrarian.net/70968359/robodoc_4.99.41-1_amd64.deb; fi
43+
- ulimit -s unlimited
4544

4645
install:
4746
- sudo apt-get install -y $SPECIFIC_DEPENDS $DEPENDS

0 commit comments

Comments
 (0)