Skip to content
Snippets Groups Projects
Unverified Commit c04fc12b authored by Laurent Heirendt's avatar Laurent Heirendt :airplane: Committed by GitHub
Browse files

Merge pull request #348 from LCSB-BioCore/lh-fix-master

resolve and build pkgs in docs
parents 76b39af8 f88401fd
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,8 @@ pages:
- generator:gource
image: $CI_REGISTRY/r3/docker/julia-custom
script:
- julia --project=docs -e 'using Pkg; Pkg.instantiate(); Pkg.develop(PackageSpec(path=pwd()))'
# resolve and build packages from the docs/Project.toml file
- julia --project=docs -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.resolve(); Pkg.instantiate(); Pkg.precompile(); Pkg.build();'
- julia --project=docs --color=yes docs/make.jl
- mv docs/build public # move to the directory picked up by Gitlab pages
artifacts:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment