forked from FRBNY-DSGE/StateSpaceRoutines.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
33 lines (33 loc) · 1.15 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
language: julia
os:
# Temporarily commenting out osx because of Homebrew installation issue
# of gcc 8.x. This causes the HDF5 build to attempt to build it from scratch
# by downloading all of xcode which Travis CI then kills because it takes too long.
# Refer to Matt Bauman's comment on JuliaIO/HDF5.jl issue 483, and
# Andreas Noack's issue 27751 on Homebrew/homebrew-core.
#- osx
- linux
julia:
- 1
- 1.4 # Make sure it works in 1.4 b/c test output is slightly different in 1.5
- 1.1 # Make sure it works in 1.1 for legacy reasons
notifications:
email: false
addons:
apt:
packages:
- hdf5-tools
- libnlopt0
homebrew:
packages:
- hdf5
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --color=yes -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
# - julia --color=yes -e 'using Pkg; Pkg.build()'
# - julia --check-bounds=yes --color=yes -e 'using Pkg; Pkg.test(coverage=true)'
branches:
only:
- master
after_success:
- julia -e 'using Pkg; cd(Pkg.dir("StateSpaceRoutines")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'