forked from JuliaDiff/ForwardDiff.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (43 loc) · 1.4 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
40
41
42
43
44
45
46
47
48
49
50
51
52
language: julia
julia:
- 1.0
- 1.4
- nightly
matrix:
allow_failures:
- julia: nightly
- env: ALLOWFAILURES=1
notifications:
email: false
sudo: false
jobs:
include:
# These tests need to be run in a process where bounds checking is not explicitly enabled
# (like they are with Pkg.test)
- stage: test
script:
- julia --color=yes --project=. -e 'using Pkg; Pkg.instantiate()'
- julia --color=yes --check-bounds=no --code-coverage=none -O2 --project=. test/SIMDTest.jl
julia: 1.0
env: ALLOWFAILURES=1
- stage: test
script:
- julia --color=yes --project=. -e 'using Pkg; Pkg.instantiate()'
- julia --color=yes --check-bounds=no --code-coverage=none -O2 --project=. test/SIMDTest.jl
julia: 1.3
env: ALLOWFAILURES=1
- stage: test
script:
- julia --color=yes --project=. -e 'using Pkg; Pkg.instantiate()'
- julia --color=yes --check-bounds=no --code-coverage=none -O2 --project=. test/SIMDTest.jl
julia: nightly
env: ALLOWFAILURES=1
- stage: "Documentation"
julia: 1.2
os: linux
script:
- julia --color=yes --project=docs/ -e 'using Pkg; Pkg.instantiate()'
- julia --color=yes --project=docs/ docs/make.jl
after_success: skip
after_success:
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'