Skip to content

Commit eca7bd0

Browse files
committed
Fixup travis
1 parent b38da83 commit eca7bd0

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

.travis.yml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,27 @@
1+
# Documentation: http://docs.travis-ci.com/user/languages/julia/
12
language: julia
3+
services:
4+
- mysql
5+
os:
6+
- linux
7+
- osx
28
julia:
3-
- 0.5
49
- 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())'
522
before_script:
623
- 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//'`
825
after_script:
926
- export LD_LIBRARY_PATH=$OLD_PATH
1027
- unset OLD_PATH

REQUIRE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
julia 0.6
22
DataFrames 0.11
3-
Compat 0.40.0
3+
Compat 0.39.0

0 commit comments

Comments
 (0)