We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c4d175 commit 23a2427Copy full SHA for 23a2427
.travis.yml
@@ -12,7 +12,8 @@ before_script:
12
- export OLD_PATH=$LD_LIBRARY_PATH
13
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`mariadb_config --libs | cut -d ' ' -f1 | sed 's/-L//'`
14
script:
15
- - julia -e 'Pkg.clone("https://github.com/JuliaDB/MySQL.jl.git"); Pkg.build("MySQL"); if ENV["TRAVIS_OS_NAME"] == "osx" run(`$(Pkg.dir())/Homebrew/deps/usr/bin/mysql.server start`) end; Pkg.test("MySQL")'
+ - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
16
+ - julia -e 'Pkg.clone(pwd()); Pkg.build("MySQL"); if ENV["TRAVIS_OS_NAME"] == "osx" run(`$(Pkg.dir())/Homebrew/deps/usr/bin/mysql.server start`) end; Pkg.test("MySQL")'
17
after_script:
18
- export LD_LIBRARY_PATH=$OLD_PATH
19
- unset OLD_PATH
0 commit comments