2019-05-27 19:06:18 +04:00
|
|
|
# TODO: remove this as submodules aren't used anymore.
|
2019-05-14 20:16:14 +04:00
|
|
|
variables:
|
2019-05-14 20:17:39 +04:00
|
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
2019-05-14 20:16:14 +04:00
|
|
|
|
2019-05-27 14:06:56 +04:00
|
|
|
stages:
|
2019-05-27 20:35:52 +04:00
|
|
|
- build_docker
|
|
|
|
- build_and_deploy_docker
|
|
|
|
- build_and_deploy_website
|
2019-05-27 14:21:01 +04:00
|
|
|
- test
|
|
|
|
|
2019-06-05 18:46:00 +04:00
|
|
|
.website_build: &website_build
|
|
|
|
stage: build_and_deploy_website
|
|
|
|
image: node:8
|
|
|
|
before_script:
|
|
|
|
- cd gitlab-pages/website
|
|
|
|
- npm install
|
|
|
|
script:
|
|
|
|
- npm run version next
|
|
|
|
- npm run build
|
2019-06-06 17:45:45 +04:00
|
|
|
after_script:
|
|
|
|
- cp -r gitlab-pages/website/build/ligo public
|
2019-06-05 18:46:00 +04:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- public
|
2019-05-27 14:06:56 +04:00
|
|
|
|
|
|
|
.docker: &docker
|
|
|
|
image: docker:1.11
|
|
|
|
services:
|
|
|
|
- docker:dind
|
2019-05-27 18:31:57 +04:00
|
|
|
|
|
|
|
.docker_build: &docker_build
|
|
|
|
script:
|
2019-06-06 18:49:47 +04:00
|
|
|
- docker build -t $LIGO_REGISTRY_IMAGE:next -f ./docker/Dockerfile .
|
2019-05-28 20:41:18 +04:00
|
|
|
|
2019-05-24 02:48:11 +04:00
|
|
|
.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
|
2019-05-28 22:54:07 +04:00
|
|
|
- scripts/install_native_dependencies.sh
|
|
|
|
- scripts/install_opam.sh
|
2019-05-24 02:48:11 +04:00
|
|
|
- export PATH="/usr/local/bin${PATH:+:}${PATH:-}"
|
2019-05-14 18:37:29 +04:00
|
|
|
|
2019-05-28 22:54:07 +04:00
|
|
|
# Initialise opam, create switch, load opam environment variables
|
2019-05-24 02:48:11 +04:00
|
|
|
- printf '' | opam init --bare
|
2019-05-28 22:54:07 +04:00
|
|
|
- printf '' | opam switch create ligo-switch ocaml-base-compiler.4.06.1
|
2019-05-24 02:48:11 +04:00
|
|
|
- eval $(opam config env)
|
2019-05-16 17:28:28 +04:00
|
|
|
|
2019-05-24 02:48:11 +04:00
|
|
|
# Show versions and current switch
|
|
|
|
- echo "$PATH"
|
|
|
|
- opam --version
|
|
|
|
- printf '' | ocaml
|
|
|
|
- opam switch
|
2019-05-14 18:37:29 +04:00
|
|
|
|
2019-06-06 19:59:03 +04:00
|
|
|
local-dune-job:
|
2019-05-24 02:48:11 +04:00
|
|
|
<<: *before_script
|
2019-05-27 14:06:56 +04:00
|
|
|
stage: test
|
2019-05-15 17:17:04 +04:00
|
|
|
script:
|
2019-05-28 22:54:07 +04:00
|
|
|
- scripts/setup_ligo_opam_repository.sh
|
2019-05-15 17:17:04 +04:00
|
|
|
- opam install -y --build-test --deps-only ./src/
|
2019-05-16 17:28:28 +04:00
|
|
|
- dune build -p ligo
|
2019-05-15 17:17:04 +04:00
|
|
|
# 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-05-15 17:17:04 +04:00
|
|
|
|
2019-06-06 19:59:03 +04:00
|
|
|
local-repo-job:
|
2019-05-24 02:48:11 +04:00
|
|
|
<<: *before_script
|
2019-05-27 14:06:56 +04:00
|
|
|
stage: test
|
2019-05-14 18:37:29 +04:00
|
|
|
script:
|
2019-05-27 14:06:56 +04:00
|
|
|
- vendors/opam-repository-tools/rewrite-local-opam-repository.sh
|
2019-05-27 13:30:28 +04:00
|
|
|
- opam repository add localrepo "file://$PWD/vendors/ligo-opam-repository-local-generated/"
|
2019-05-14 20:42:45 +04:00
|
|
|
#--build-test
|
2019-05-15 17:17:04 +04:00
|
|
|
- opam install -y ligo
|
2019-05-14 18:37:29 +04:00
|
|
|
|
2019-06-06 19:59:03 +04:00
|
|
|
remote-repo-job:
|
2019-05-24 02:48:11 +04:00
|
|
|
<<: *before_script
|
2019-05-27 14:06:56 +04:00
|
|
|
stage: test
|
2019-05-14 18:37:29 +04:00
|
|
|
script:
|
|
|
|
# Add repository
|
2019-05-27 13:30:00 +04:00
|
|
|
- opam repository add ligo-repository https://gitlab.com/ligolang/ligo.git
|
2019-05-14 18:37:29 +04:00
|
|
|
- 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
|
2019-05-28 20:41:18 +04:00
|
|
|
only:
|
|
|
|
- master
|
2019-05-24 02:13:31 +04:00
|
|
|
|
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:
|
2019-05-27 20:35:52 +04:00
|
|
|
stage: build_docker
|
2019-05-27 19:36:08 +04:00
|
|
|
<<: *docker
|
|
|
|
<<: *docker_build
|
|
|
|
except:
|
|
|
|
- master
|
2019-06-06 18:49:47 +04:00
|
|
|
- dev
|
2019-05-27 14:06:56 +04:00
|
|
|
|
2019-06-06 18:49:47 +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:
|
2019-05-27 20:35:52 +04:00
|
|
|
stage: build_and_deploy_docker
|
2019-05-27 14:06:56 +04:00
|
|
|
<<: *docker
|
2019-05-28 20:41:18 +04:00
|
|
|
<<: *docker_build
|
2019-05-27 18:41:59 +04:00
|
|
|
after_script:
|
2019-05-27 17:07:55 +04:00
|
|
|
- docker login -u $LIGO_REGISTRY_USER -p $LIGO_REGISTRY_PASSWORD
|
2019-06-06 18:49:47 +04:00
|
|
|
- docker push $LIGO_REGISTRY_IMAGE:next
|
2019-05-27 20:47:10 +04:00
|
|
|
only:
|
2019-06-06 18:49:47 +04:00
|
|
|
- dev
|
2019-05-27 20:47:10 +04:00
|
|
|
|
2019-05-27 19:06:18 +04:00
|
|
|
|
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.
|
2019-05-27 19:06:18 +04:00
|
|
|
pages:
|
2019-06-05 18:46:00 +04:00
|
|
|
<<: *website_build
|
2019-06-06 19:59:03 +04:00
|
|
|
only:
|
|
|
|
- master
|
|
|
|
- dev
|
2019-06-05 18:46:00 +04:00
|
|
|
|