ligo/.gitlab-ci.yml

206 lines
4.5 KiB
YAML
Raw Normal View History

2016-09-08 19:13:10 +02:00
variables:
2017-03-05 02:15:14 +01:00
public_docker_image: docker.io/tezos/tezos
2016-09-08 19:13:10 +02:00
2017-03-05 02:15:14 +01:00
image: ${CI_REGISTRY_IMAGE}:${CI_BUILD_REF}_build_deps
2016-09-08 19:13:10 +02:00
stages:
- build_deps
- build
- test
2017-03-05 02:15:14 +01:00
- build_docker
2016-09-08 19:13:10 +02:00
- publish
- cleanup
build_deps:
stage: build_deps
2017-03-05 02:15:14 +01:00
image: docker:latest
2016-09-08 19:13:10 +02:00
tags:
- docker_builder
script:
- ./scripts/create_build_deps_docker_image.sh
2017-03-05 02:15:14 +01:00
${CI_REGISTRY_IMAGE} ${CI_BUILD_REF}_build_deps
2016-09-08 19:13:10 +02:00
build:
stage: build
tags:
- tezos_builder
script:
2017-01-02 14:02:55 +01:00
- echo "PRODUCTION=yes" > src/Makefile.local
2017-03-05 02:15:14 +01:00
- make -C src -j4
- make -C test -j4 build-test
2016-09-08 19:13:10 +02:00
artifacts:
expire_in: 1 week
untracked: true
test:store:
stage: test
tags:
- tezos_builder
script:
- make -C test run-test-store
dependencies:
- build
test:context:
stage: test
tags:
- tezos_builder
script:
- make -C test run-test-context
dependencies:
- build
test:state:
stage: test
tags:
- tezos_builder
script:
- make -C test run-test-state
dependencies:
- build
test:basic:
stage: test
tags:
- tezos_builder
script:
- make -C test run-test-basic
dependencies:
- build
test:basic.sh:
stage: test
tags:
- tezos_builder
script:
- make -C test run-test-basic.sh
dependencies:
- build
2016-10-19 15:09:00 +02:00
test:data-encoding:
stage: test
tags:
- tezos_builder
script:
- make -C test run-test-data-encoding
2017-03-31 01:17:25 +02:00
dependencies:
- build
test:merkle:
stage: test
tags:
- tezos_builder
script:
- make -C test run-test-merkle
2016-10-19 15:09:00 +02:00
dependencies:
- build
2017-01-14 13:14:22 +01:00
test:p2p-io-scheduler:
stage: test
tags:
- tezos_builder
script:
- make -C test run-test-p2p-io-scheduler
dependencies:
- build
test:p2p-connection:
stage: test
tags:
- tezos_builder
script:
- make -C test run-test-p2p-connection
dependencies:
- build
test:p2p-connection-pool:
stage: test
tags:
- tezos_builder
script:
- make -C test run-test-p2p-connection-pool
dependencies:
- build
2017-03-05 02:15:14 +01:00
build:docker:
stage: build_docker
image: docker:latest
tags:
2017-03-14 09:18:35 +01:00
- public_docker_builder
2017-03-05 02:15:14 +01:00
script:
2017-03-14 09:18:35 +01:00
- ./scripts/create_docker_image.sh "${CI_REGISTRY_IMAGE}" "${CI_BUILD_REF}" .
2017-03-05 02:15:14 +01:00
- docker login -u gitlab-ci-token -p "$CI_BUILD_TOKEN" "${CI_REGISTRY}"
- docker tag "${CI_REGISTRY_IMAGE}:${CI_BUILD_REF}"
"${CI_REGISTRY_IMAGE}:${CI_BUILD_REF_NAME}"
- docker push "${CI_REGISTRY_IMAGE}:${CI_BUILD_REF_NAME}"
- docker rmi "${CI_REGISTRY_IMAGE}:${CI_BUILD_REF_NAME}"
2017-01-14 13:14:22 +01:00
publish:docker:
stage: publish
2017-03-05 02:15:14 +01:00
image: docker:latest
tags:
2017-03-14 09:18:35 +01:00
- public_docker_builder
2017-03-05 02:15:14 +01:00
only:
- master@tezos/tezos
- alphanet@tezos/tezos
script:
2017-03-05 02:15:14 +01:00
- mkdir -p ~/.docker ;
- echo "$CI_DOCKER_AUTH" > ~/.docker/config.json ;
2017-03-07 13:28:23 +01:00
- docker tag "${CI_REGISTRY_IMAGE}:${CI_BUILD_REF}"
2017-03-05 02:15:14 +01:00
"${public_docker_image}:${CI_BUILD_REF_NAME}"
- docker push "${public_docker_image}:${CI_BUILD_REF_NAME}"
- docker rmi "${public_docker_image}:${CI_BUILD_REF_NAME}"
publish:github:
image: ocaml/opam
stage: publish
2016-09-08 19:13:10 +02:00
tags:
- tezos_builder
only:
- master@tezos/tezos
script:
- echo "${CI_KH}" > ~/.ssh/known_hosts
- echo "${CI_PK_GITHUB}" > ~/.ssh/id_rsa
2016-09-08 19:13:10 +02:00
- chmod 400 ~/.ssh/id_rsa
- rm -fr .git/refs/original
- git filter-branch --prune-empty --index-filter
'git rm -r --cached --ignore-unmatch
.gitlab-ci.yml
"docs/proof of stake.md"
src/client/embedded/bootstrap/mining/'
--env-filter
2016-09-21 15:36:45 +02:00
'if [ $GIT_COMMIT != "f42e9d12ac75d2876a4cf600d44976b7090d4533" ] ; then
export GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME" ;
export GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL" ;
export GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE" ;
export GIT_AUTHOR_NAME="Dynamic Ledger Solutions, Inc." ;
export GIT_AUTHOR_EMAIL="contact@tezos.com" ;
fi'
2016-09-08 19:13:10 +02:00
HEAD
2017-01-23 11:46:56 +01:00
- git push git@github.com:tezos/tezos.git -f HEAD:master
2016-09-08 19:13:10 +02:00
cleanup:
stage: cleanup
2017-03-05 02:15:14 +01:00
image: docker:latest
2016-09-08 19:13:10 +02:00
tags:
- docker_builder
script:
2017-03-05 02:15:14 +01:00
- docker tag "${CI_REGISTRY_IMAGE}:${CI_BUILD_REF}_build_deps"
"${CI_REGISTRY_IMAGE}:${CI_BUILD_REF_NAME}_build_deps"
- docker rmi "${CI_REGISTRY_IMAGE}:${CI_BUILD_REF}_build_deps"
2017-03-14 09:18:35 +01:00
when: always
allow_failure: true
cleanup:public:
stage: cleanup
image: docker:latest
tags:
- public_docker_builder
only:
- master@tezos/tezos
- alphanet@tezos/tezos
script:
2017-03-05 02:15:14 +01:00
- docker rmi "${CI_REGISTRY_IMAGE}:${CI_BUILD_REF}"
2016-09-08 19:13:10 +02:00
when: always
allow_failure: true