File tree 3 files changed +21
-27
lines changed
3 files changed +21
-27
lines changed Original file line number Diff line number Diff line change 1
- # Documentation: http://docs.travis-ci.com/user/languages/julia/
2
1
language : julia
3
2
os :
4
3
- linux
5
4
- osx
6
5
julia :
7
- - 0.6
8
- - 0.7
9
6
- 1.0
10
7
- nightly
11
8
notifications :
12
9
email : false
13
10
matrix :
14
11
fast_finish : true
12
+ allow_failures :
13
+ - julia : nightly
14
+ # uncomment the following lines to override the default test script
15
+ # script:
16
+ # - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
17
+ # - julia -e 'Pkg.clone(pwd()); Pkg.build("FilePaths"); Pkg.test("FilePaths"; coverage=true)'
15
18
after_success :
16
- - |
17
- julia -e '
18
- VERSION >= v"0.7.0-DEV.3656" && using Pkg
19
- VERSION >= v"0.7.0-DEV.5183" || cd(Pkg.dir("FilePaths"))
20
- Pkg.add("Coverage"); using Coverage
21
- Codecov.submit(process_folder())'
19
+ - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
20
+ # jobs:
21
+ # include:
22
+ # - stage: "Documentation"
23
+ # julia: 1.0
24
+ # os: linux
25
+ # script:
26
+ # - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
27
+ # - julia --project=docs/ docs/make.jl
28
+ # after_success: skip
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
environment :
2
2
matrix :
3
- - julia_version : 0.6
4
- - julia_version : 0.7
5
- - julia_version : 1
6
- - julia_version : latest
3
+ - julia_version : 1.0
4
+ - julia_version : nightly
7
5
8
6
platform :
9
- - x86
10
- - x64
11
-
12
- # # uncomment the following lines to allow failures on nightly julia
13
- # # (tests will run but not make your overall status red)
14
- # matrix:
15
- # allow_failures:
16
- # - julia_version: latest
7
+ - x86 # 32-bit
8
+ - x64 # 64-bit
17
9
18
10
branches :
19
11
only :
@@ -35,4 +27,4 @@ build_script:
35
27
36
28
test_script :
37
29
- echo "%JL_TEST_SCRIPT%"
38
- - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
30
+ - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
You can’t perform that action at this time.
0 commit comments