-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
35 lines (32 loc) · 867 Bytes
/
.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
## Documentation: http://docs.travis-ci.org/user/languages/julia/
language: julia
os:
- linux
- osx
- windows
julia:
- 1.3
- nightly
matrix:
- PYTHON=Conda-python
## uncomment the following lines to allow failures on nightly julia
## (tests will run but not make your overall status red)
notifications:
email: false
## uncomment and modify the following lines to manually install system packages
#addons:
# apt: # apt-get for linux
# packages:
# - gfortran
#before_script: # homebrew for mac
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
jobs:
fast_finish: true
allow_failures:
- julia: nightly
after_success: julia -e '
ENV["CODECOV_TOKEN"]="be10e81a-7a6b-4baa-9eba-57d9e0755cbc";
ODECOV_TOKEN"]="be10e81a-7a6b-4baa-9eba-57d9e0755cbc";"
Pkg.add("Coverage");
using Coverage;
Codecov.submit(process_folder());'