We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e80be58 commit 7d28e87Copy full SHA for 7d28e87
.travis.yml
@@ -14,6 +14,14 @@ cache:
14
addons:
15
apt_packages:
16
- gfortran
17
+
18
+before_install:
19
+ # don't keep an old version of the code in the cache
20
+ - julia -e 'if "GraphicalModelLearning" in keys(Pkg.installed()) Pkg.rm("GraphicalModelLearning"); Pkg.rm("GraphicalModelLearning") end'
21
+ - julia -e 'Pkg.update()' #make sure we get the latest version of METADATA
22
+ - julia -e 'if !("Coverage" in keys(Pkg.installed())) Pkg.add("Coverage") end'
23
+ - julia -e 'if !("Documenter" in keys(Pkg.installed())) Pkg.add("Documenter") end'
24
25
script:
26
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
27
- julia -e 'Pkg.clone(pwd())'
0 commit comments