We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bda58f8 commit 132d233Copy full SHA for 132d233
1 file changed
.travis.yml
@@ -35,13 +35,16 @@ before_install:
35
- cat /etc/hosts # optionally check the content *after*
36
# Install MPICH
37
# based on https://github.com/travis-ci/apt-package-whitelist/issues/406
38
+# with extensions to create mpicc via hard link in bin
39
- wget --no-check-certificate -q http://www.mpich.org/static/downloads/3.2/mpich-3.2.tar.gz
40
- tar -xzf mpich-3.2.tar.gz
41
- cd mpich-3.2
42
- mkdir build && cd build
43
- ../configure CC=$CC CXX=$CXX --prefix=${HOME}/mpich --disable-fortran --disable-romio
44
- make -j2
45
- make install
46
+ - chmod 777 "$currentDir/mpich-3.2/build/src/env/mpicc.sh"
47
+ - sudo ln "$currentDir/mpich-3.2/build/src/env/mpicc.sh" /usr/bin/mpicc
48
- cd "$currentDir"
49
50
# prevent Maven from running
0 commit comments