File tree Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Documentation: http://docs.travis-ci.com/user/languages/julia/
1
2
language : julia
3
+ services :
4
+ - mysql
5
+ os :
6
+ - linux
7
+ - osx
2
8
julia :
3
- - 0.5
4
9
- 0.6
10
+ - nightly
11
+ notifications :
12
+ email : false
13
+ # uncomment the following lines to override the default test script
14
+ # script:
15
+ # - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
16
+ # - julia -e 'Pkg.clone(pwd()); Pkg.build("MySQL"); Pkg.test("MySQL"; coverage=true)'
17
+ after_success :
18
+ # push coverage results to Coveralls
19
+ - julia -e 'cd(Pkg.dir("MySQL")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
20
+ # push coverage results to Codecov
21
+ - julia -e 'cd(Pkg.dir("MySQL")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
5
22
before_script :
6
23
- export OLD_PATH=$LD_LIBRARY_PATH
7
- - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`mariadb_config --libs | cut -d ' ' -f1 | sed 's/-L//'`
24
+ - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`mysql_config --libs | cut -d ' ' -f1 | sed 's/-L//'`
8
25
after_script :
9
26
- export LD_LIBRARY_PATH=$OLD_PATH
10
27
- unset OLD_PATH
Original file line number Diff line number Diff line change 1
1
julia 0.6
2
2
DataFrames 0.11
3
- Compat 0.40 .0
3
+ Compat 0.39 .0
You can’t perform that action at this time.
0 commit comments