Where can I find the code that is run on Travis in absence of a custom test script? I want to use it on Gitlab.
I assume this is it Building a Julia Project - Travis CI .
1 Like
I needed a --project=.
in addition for julia
, not sure why, I thought it was the default.
Here is the full script: travis-build/julia.rb at 0cd568983d56387426cf94cbb60a5dd11c8e6e1b · travis-ci/travis-build · GitHub
I assume that the JL_PKG
environment variable has some role in it.
1 Like
The default script sets JULIA_PROJECT=@.
(https://github.com/travis-ci/travis-build/blob/0cd568983d56387426cf94cbb60a5dd11c8e6e1b/lib/travis/build/script/julia.rb#L25).
1 Like