-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (36 loc) · 1.13 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
language: julia
os:
- linux
julia:
- 0.4.4
notifications:
email: false
before_install:
- sudo apt-get update -qq
- sudo apt-get install build-essential gfortran perl g++ gcc cmake m4 git
- sudo apt-get install -y liblapack-dev liblapack-doc liblapack3gf
- sudo apt-get install -y libblas-dev libblas-doc libblas3gf
- echo `pwd`
install:
- ls ./deps
- ls -lh ./deps/travis-install-mpi.sh
- sudo ./deps/travis-install-mpi.sh mpich3
- julia -e 'Pkg.clone("MPI")'
- julia -e 'Pkg.build("MPI")'
- julia -e 'Pkg.clone("ArrayViews")'
- julia -e 'Pkg.build("ArrayViews")'
- ls ./
- ls ../
- ls ~/.julia/v0.4
# uncomment the following lines to override the default test script
script:
- cd $HOME/.julia/v0.4/
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- git clone https://github.com/JaredCrean2/Petsc.git
- mv -v ./Petsc ./PETSc
- julia --check-bounds=yes -e 'Pkg.build("PETSc")'
- echo $HOME
- cd ./PETSc
- ./test/runtests.sh
# - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("PETSc"); Pkg.test("PETSc"; coverage=true)'
# - julia --check-bounds=yes ./test/test_singlereal.jl