ligo/.gitlab-ci.yml

162 lines
4.4 KiB
YAML
Raw Normal View History

# TODO: remove this as submodules aren't used anymore.
variables:
2019-05-14 20:17:39 +04:00
GIT_SUBMODULE_STRATEGY: recursive
2019-05-27 14:06:56 +04:00
stages:
- build_docker
- build_and_deploy_docker
- build_and_deploy_website
- test
.website_build: &website_build
stage: build_and_deploy_website
image: node:8
before_script:
2019-06-07 13:56:03 +04:00
- scripts/install_native_dependencies.sh
# TODO: these things are moved to scripts in other branches.
- wget https://github.com/ocaml/opam/releases/download/2.0.1/opam-2.0.1-x86_64-linux -O opam-2.0.1-x86_64-linux
- cp opam-2.0.1-x86_64-linux /usr/local/bin/opam
- chmod +x /usr/local/bin/opam
- export PATH="/usr/local/bin${PATH:+:}${PATH:-}"
# Initialise opam
- printf '' | opam init --bare
- eval $(opam config env)
# Create switch
- printf '' | opam switch create toto ocaml-base-compiler.4.06.1
- eval $(opam config env)
# Show versions and current switch
- echo "$PATH"
- opam --version
- printf '' | ocaml
- opam switch
# install deps for internal documentation
- opam install -y odoc
2019-06-07 13:56:03 +04:00
- vendors/opam-repository-tools/rewrite-local-opam-repository.sh
- opam repository add localrepo "file://$PWD/vendors/ligo-opam-repository-local-generated/"
- opam install -y --build-test --deps-only ./src/
- dune build -p ligo
# TODO: also try instead from time to time:
#- (cd ./src/; dune build -p ligo)
# build with odoc
- dune build @doc
# npm
- cd gitlab-pages/website
- npm install
script:
- npm run version next
- npm run build
# move internal odoc documentation to the website folder
- mkdir -p gitlab-pages/website/build/ligo/
- mv _build/default/_doc/_html/ gitlab-pages/website/build/ligo/internal
- ls gitlab-pages/website/build/ligo/ # for debug
2019-06-06 17:45:45 +04:00
after_script:
2019-06-07 13:56:03 +04:00
- cp -r gitlab-pages/website/build/ligo public
artifacts:
paths:
- public
2019-05-27 14:06:56 +04:00
.docker: &docker
image: docker:1.11
services:
- docker:dind
.docker_build: &docker_build
script:
- docker build -t $LIGO_REGISTRY_IMAGE:next -f ./docker/Dockerfile .
.before_script: &before_script
before_script:
# Install dependencies
# rsync is needed by opam to sync a package installed from a local directory with the copy in ~/.opam
- apt-get update -qq
- scripts/install_native_dependencies.sh
- scripts/install_opam.sh
- export PATH="/usr/local/bin${PATH:+:}${PATH:-}"
# Initialise opam, create switch, load opam environment variables
- printf '' | opam init --bare
- printf '' | opam switch create ligo-switch ocaml-base-compiler.4.06.1
- eval $(opam config env)
2019-05-16 17:28:28 +04:00
# Show versions and current switch
- echo "$PATH"
- opam --version
- printf '' | ocaml
- opam switch
2019-06-06 19:59:03 +04:00
local-dune-job:
<<: *before_script
2019-05-27 14:06:56 +04:00
stage: test
script:
- scripts/setup_ligo_opam_repository.sh
- opam install -y --build-test --deps-only ./src/
2019-05-16 17:28:28 +04:00
- dune build -p ligo
# TODO: also try instead from time to time:
#- (cd ./src/; dune build -p ligo)
2019-05-15 18:35:46 +04:00
- dune build @ligo-test
2019-05-16 17:28:28 +04:00
# artifacts:
# paths:
# - src/ligo/bin/cli.ml
2019-06-06 19:59:03 +04:00
local-repo-job:
<<: *before_script
2019-05-27 14:06:56 +04:00
stage: test
script:
2019-05-27 14:06:56 +04:00
- vendors/opam-repository-tools/rewrite-local-opam-repository.sh
- opam repository add localrepo "file://$PWD/vendors/ligo-opam-repository-local-generated/"
2019-05-14 20:42:45 +04:00
#--build-test
- opam install -y ligo
2019-06-06 19:59:03 +04:00
remote-repo-job:
<<: *before_script
2019-05-27 14:06:56 +04:00
stage: test
script:
# Add repository
- opam repository add ligo-repository https://gitlab.com/ligolang/ligo.git
- eval $(opam config env)
- opam install -y ligo
# Used in the IDE
#- opam install -y user-setup
#- opam install -y merlin
#- opam install -y ocp-indent
#- opam user-setup install
only:
- master
2019-05-27 19:36:08 +04:00
# Run a docker build without publishing to the registry
2019-06-06 19:59:03 +04:00
build-current-docker-image:
stage: build_docker
2019-05-27 19:36:08 +04:00
<<: *docker
<<: *docker_build
except:
- master
- dev
2019-05-27 14:06:56 +04:00
# When a MR/PR is merged to dev
2019-05-27 14:06:56 +04:00
# take the previous build and publish it to Docker Hub
2019-06-06 19:59:03 +04:00
build-and-publish-latest-docker-image:
stage: build_and_deploy_docker
2019-05-27 14:06:56 +04:00
<<: *docker
<<: *docker_build
2019-05-27 18:41:59 +04:00
after_script:
- docker login -u $LIGO_REGISTRY_USER -p $LIGO_REGISTRY_PASSWORD
- docker push $LIGO_REGISTRY_IMAGE:next
only:
- dev
2019-06-06 17:45:45 +04:00
# Pages are deployed from both master & dev, be careful not to override 'next'
# in case something gets merged into 'dev' while releasing.
pages:
<<: *website_build
2019-06-06 19:59:03 +04:00
only:
- master
- dev
- feature/#3-add-odoc-to-website