File tree Expand file tree Collapse file tree 2 files changed +22
-45
lines changed Expand file tree Collapse file tree 2 files changed +22
-45
lines changed Original file line number Diff line number Diff line change
1
+ before_install :
2
+ - cd ../..
3
+ - mv $TRAVIS_REPO_SLUG _old
4
+ - git config --global core.autocrlf false
5
+ - git clone --depth=50 _old $TRAVIS_REPO_SLUG
6
+ - cd $TRAVIS_REPO_SLUG
7
+
1
8
language : julia
2
9
3
10
sudo : false
4
11
5
12
os :
6
13
- linux
7
14
- osx
15
+ - windows
16
+
17
+ arch :
18
+ - x64
19
+ - x86
8
20
9
21
julia :
10
22
- 1.0
11
- - 1.2
23
+ - 1.3
12
24
- nightly
13
25
14
26
env :
15
27
- JULIA_PROJECT="@."
16
28
29
+ matrix :
30
+ exclude :
31
+ - os : osx
32
+ arch : x86
33
+ allow_failures :
34
+ - julia : nightly
35
+
17
36
notifications :
18
37
email : false
19
38
20
39
after_success :
21
- - julia -e 'ENV["TRAVIS_JULIA_VERSION"] != "1.1 " && ENV["TRAVIS_OS_NAME"] != "linux" && exit(); using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
40
+ - julia -e 'ENV["TRAVIS_JULIA_VERSION"] == "1.3 " && ENV["TRAVIS_OS_NAME"] != "linux" && exit(); using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
22
41
23
42
jobs :
24
43
include :
25
44
- stage : " Documentation"
26
- julia : 1.2
45
+ julia : 1.3
27
46
os : linux
28
47
script :
29
48
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(); Pkg.build("SQLite")'
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments