-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.travis.yml
More file actions
21 lines (21 loc) · 822 Bytes
/
.travis.yml
File metadata and controls
21 lines (21 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: julia
os:
- linux
- osx
#before_install:
# - sudo apt-get update -qq
# - sudo apt-get install -qq gfortran
before_install:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update; brew outdated gcc || brew upgrade gcc; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq && sudo apt-get install -qq gfortran; fi
julia:
- release
# - nightly
notifications:
email: false
# uncomment the following lines to override the default test script
#script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("TargetedLearning"); Pkg.test("TargetedLearning"; coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("TargetedLearning")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'