File tree Expand file tree Collapse file tree 1 file changed +30
-4
lines changed Expand file tree Collapse file tree 1 file changed +30
-4
lines changed Original file line number Diff line number Diff line change 1
1
language : julia
2
2
3
- codecov : true
4
- coveralls : true
5
-
6
3
notifications :
7
4
email : false
8
5
9
6
jobs :
10
7
allow_failures :
11
8
- env : TRAVIS_JULIA_VERSION=nightly
9
+ - env : TRAVIS_OS_NAME=windows
12
10
include :
13
- # ## Tests
11
+ # ##### Tests
12
+ # ## Julia 1.3
14
13
- stage : " Test (Julia 1.3)"
15
14
julia : 1.3
16
15
os : linux
@@ -22,17 +21,44 @@ jobs:
22
21
- julia -e 'using Coverage; Coveralls.submit(Coveralls.process_folder());'
23
22
- julia -e 'using Coverage; Codecov.submit(Codecov.process_folder());'
24
23
24
+ - stage : # Test (Julia 1.3)
25
+ julia : 1.3
26
+ os : osx
27
+ script :
28
+ - julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
29
+
30
+ - stage : # Test (Julia 1.3)
31
+ julia : 1.3
32
+ os : windows
33
+ script :
34
+ - julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
35
+
36
+ # ## Julia nightly
25
37
- stage : " Test (Julia nightly)"
26
38
julia : nightly
27
39
os : linux
28
40
script :
29
41
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
30
42
43
+ - stage : # Test (Julia nightly)
44
+ julia : nightly
45
+ os : osx
46
+ script :
47
+ - julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
48
+
49
+ - stage : # Test (Julia nightly)
50
+ julia : nightly
51
+ os : windows
52
+ script :
53
+ - julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
54
+
31
55
# ## Documentation generation
32
56
- stage : " Documentation"
33
57
julia : 1.3
58
+ python : 3.7
34
59
os : linux
35
60
script :
61
+ - pip install --user matplotlib
36
62
- julia --project=docs -e 'using Pkg; Pkg.instantiate(); Pkg.add(PackageSpec(path=pwd()))'
37
63
- julia --project=docs --color=yes docs/make.jl
38
64
after_success : skip
You can’t perform that action at this time.
0 commit comments