File tree Expand file tree Collapse file tree 4 files changed +35
-25
lines changed Expand file tree Collapse file tree 4 files changed +35
-25
lines changed Original file line number Diff line number Diff line change 1- # # Documentation: http://docs.travis-ci.com/user/languages/julia/
21language : julia
32os :
43 - linux
98 - nightly
109notifications :
1110 email : false
12- script :
13- - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
14- - julia -e 'import Pkg; Pkg.clone(pwd()); Pkg.build("CSVFiles")'
15- - julia --color=yes --check-bounds=yes -e 'import Pkg; Pkg.test("CSVFiles"; coverage=true)'
11+ branches :
12+ only :
13+ - master
14+ - /release-.*/
15+ - /v(\d+)\.(\d+)\.(\d+)/
16+ matrix :
17+ allow_failures :
18+ - julia : nightly
1619after_success :
17- # push coverage results to Codecov
18- - julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
20+ - julia -e 'cd(Pkg.dir("CSVFiles")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
Original file line number Diff line number Diff line change 1+ # CSVFiles.jl v0.9.1
2+ * Fix remaining julia 1.0 compat issues
3+
14# CSVFiles.jl v0.9.0
25* Drop julia 0.6 support, add julia 0.7 support
36
Original file line number Diff line number Diff line change 1- julia 0.7-
1+ julia 0.7
22TextParse 0.6.0
3- IteratorInterfaceExtensions 0.1.0
4- TableTraits 0.3.0
5- TableTraitsUtils 0.2.0
6- DataValues 0.4.2
7- FileIO 1.0.0
8- HTTP 0.6.0
9- IterableTables 0.8.1
10- TableShowUtils 0.1.0
3+ IteratorInterfaceExtensions 0.1.1
4+ TableTraits 0.3.1
5+ TableTraitsUtils 0.2.1
6+ DataValues 0.4.4
7+ FileIO 1.0.1
8+ HTTP 0.6.14
9+ IterableTables 0.8.3
10+ TableShowUtils 0.1.1
Original file line number Diff line number Diff line change 11environment :
22 matrix :
33 - julia_version : 0.7
4- - julia_version : 1.0
5- - julia_version : latest
4+ - julia_version : 1
5+ - julia_version : nightly
66
77platform :
8- - x86
9- - x64
8+ - x86 # 32-bit
9+ - x64 # 64-bit
1010
11- # # uncomment the following lines to allow failures on nightly julia
12- # # (tests will run but not make your overall status red)
13- # matrix:
14- # allow_failures:
15- # - julia_version: latest
11+ matrix :
12+ allow_failures :
13+ - julia_version : latest
1614
1715branches :
1816 only :
1917 - master
2018 - /release-.*/
19+ - /v(\d+)\.(\d+)\.(\d+)/
2120
2221notifications :
2322 - provider : Email
@@ -35,3 +34,9 @@ build_script:
3534test_script :
3635 - echo "%JL_TEST_SCRIPT%"
3736 - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
37+
38+ # # Uncomment to support code coverage upload. Should only be enabled for packages
39+ # # which would have coverage gaps without running on Windows
40+ # on_success:
41+ # - echo "%JL_CODECOV_SCRIPT%"
42+ # - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"
You can’t perform that action at this time.
0 commit comments