ligo/.gitlab-ci.yml

328 lines
7.6 KiB
YAML
Raw Normal View History

2016-09-08 21:13:10 +04:00
variables:
2017-03-05 05:15:14 +04:00
public_docker_image: docker.io/tezos/tezos
2016-09-08 21:13:10 +04:00
2017-03-05 05:15:14 +04:00
image: ${CI_REGISTRY_IMAGE}:${CI_BUILD_REF}_build_deps
2016-09-08 21:13:10 +04:00
stages:
- build_deps
- build
- test
2017-03-05 05:15:14 +04:00
- build_docker
2016-09-08 21:13:10 +04:00
- publish
2017-03-09 17:43:59 +04:00
- deploy
2016-09-08 21:13:10 +04:00
- cleanup
build_deps:
stage: build_deps
2017-03-05 05:15:14 +04:00
image: docker:latest
2016-09-08 21:13:10 +04:00
tags:
- docker_builder
script:
- ./scripts/create_build_deps_docker_image.sh
2017-03-05 05:15:14 +04:00
${CI_REGISTRY_IMAGE} ${CI_BUILD_REF}_build_deps
2016-09-08 21:13:10 +04:00
build:
stage: build
tags:
- tezos_builder
script:
2017-01-02 17:02:55 +04:00
- echo "PRODUCTION=yes" > src/Makefile.local
2017-03-05 05:15:14 +04:00
- make -C src -j4
2017-04-05 20:24:26 +04:00
- make -C test build
2016-09-08 21:13:10 +04:00
artifacts:
expire_in: 1 week
untracked: true
2017-04-05 20:24:26 +04:00
test:utils:data-encoding:
2016-09-08 21:13:10 +04:00
stage: test
tags:
- tezos_builder
script:
2017-04-05 20:24:26 +04:00
- make -C test/utils run-test-data-encoding
2016-09-08 21:13:10 +04:00
dependencies:
- build
2017-04-05 20:24:26 +04:00
test:utils:merkle:
2016-09-08 21:13:10 +04:00
stage: test
tags:
- tezos_builder
script:
2017-04-05 20:24:26 +04:00
- make -C test/utils run-test-merkle
2016-09-08 21:13:10 +04:00
dependencies:
- build
2017-04-05 20:24:26 +04:00
test:shell:store:
2016-09-08 21:13:10 +04:00
stage: test
tags:
- tezos_builder
script:
2017-04-05 20:24:26 +04:00
- make -C test/shell run-test-store
2016-09-08 21:13:10 +04:00
dependencies:
- build
2017-04-05 20:24:26 +04:00
test:shell:context:
2016-09-08 21:13:10 +04:00
stage: test
tags:
- tezos_builder
script:
2017-04-05 20:24:26 +04:00
- make -C test/shell run-test-context
2016-09-08 21:13:10 +04:00
dependencies:
- build
2017-04-05 20:24:26 +04:00
test:shell:state:
2016-10-19 17:09:00 +04:00
stage: test
tags:
- tezos_builder
script:
2017-04-05 20:24:26 +04:00
- make -C test/shell run-test-state
2017-03-31 03:17:25 +04:00
dependencies:
- build
2017-04-05 20:24:26 +04:00
test:p2p:io-scheduler:
2017-03-31 03:17:25 +04:00
stage: test
tags:
- tezos_builder
script:
2017-04-05 20:24:26 +04:00
- make -C test/p2p run-test-p2p-io-scheduler
2016-10-19 17:09:00 +04:00
dependencies:
- build
2017-04-05 20:24:26 +04:00
test:p2p:connection:
2017-01-14 16:14:22 +04:00
stage: test
tags:
- tezos_builder
script:
2017-04-05 20:24:26 +04:00
- make -C test/p2p run-test-p2p-connection
2017-01-14 16:14:22 +04:00
dependencies:
- build
2017-04-05 20:24:26 +04:00
test:p2p:connection-pool:
2017-01-14 16:14:22 +04:00
stage: test
tags:
- tezos_builder
script:
2017-04-05 20:24:26 +04:00
- make -C test/p2p run-test-p2p-connection-pool
2017-01-14 16:14:22 +04:00
dependencies:
- build
test:proto_alpha:transactions:
stage: test
tags:
- tezos_builder
script:
- make -C test/proto_alpha run-test-transaction
dependencies:
- build
test:proto_alpha:origination:
stage: test
tags:
- tezos_builder
script:
- make -C test/proto_alpha run-test-origination
dependencies:
- build
test:proto_alpha:endorsement:
stage: test
tags:
- tezos_builder
script:
- make -C test/proto_alpha run-test-endorsement
dependencies:
- build
test:proto_alpha:vote:
stage: test
tags:
- tezos_builder
script:
- make -C test/proto_alpha run-test-vote
dependencies:
- build
2017-04-05 20:24:26 +04:00
test:basic.sh:
2017-01-14 16:14:22 +04:00
stage: test
tags:
- tezos_builder
script:
2017-04-05 20:24:26 +04:00
- make -C test run-basic.sh
2017-01-14 16:14:22 +04:00
dependencies:
- build
2017-03-05 05:15:14 +04:00
build:docker:
stage: build_docker
image: docker:latest
tags:
2017-03-14 12:18:35 +04:00
- public_docker_builder
2017-03-05 05:15:14 +04:00
script:
2017-03-09 17:43:59 +04:00
- ./scripts/create_docker_image.sh
"${CI_REGISTRY_IMAGE}" "${CI_BUILD_REF}" .
2017-03-05 05:15:14 +04: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 16:14:22 +04:00
2017-03-09 17:43:59 +04:00
build:docker:alphanet:
stage: build_docker
image: docker:latest
tags:
- public_docker_builder
only:
- alphanet@tezos/tezos
script:
- sed -i s/TEZOS/TEZOS_ALPHANET/ src/node/shell/distributed_db_message.ml
2017-03-09 17:43:59 +04:00
- patch -p1 < scripts/alphanet_constants.patch
- ./scripts/create_docker_image.sh
"${CI_REGISTRY_IMAGE}" "${CI_BUILD_REF}.patched" .
build:docker:alphanet_next:
stage: build_docker
image: docker:latest
tags:
- public_docker_builder
only:
- master@tezos/tezos
script:
- sed -i s/TEZOS/TEZOS_ALPHANET_NEXT/ src/node/shell/distributed_db_message.ml
2017-03-09 17:43:59 +04:00
- patch -p1 < scripts/alphanet_constants.patch
- patch -p1 < scripts/alphanet_next.patch
- ./scripts/create_docker_image.sh
"${CI_REGISTRY_IMAGE}" "${CI_BUILD_REF}.patched" .
publish:docker:
stage: publish
2017-03-05 05:15:14 +04:00
image: docker:latest
tags:
2017-03-14 12:18:35 +04:00
- public_docker_builder
2017-03-05 05:15:14 +04:00
only:
- master@tezos/tezos
script:
2017-03-05 05:15:14 +04:00
- mkdir -p ~/.docker ;
- echo "$CI_DOCKER_AUTH" > ~/.docker/config.json ;
2017-03-07 16:28:23 +04:00
- docker tag "${CI_REGISTRY_IMAGE}:${CI_BUILD_REF}"
2017-03-05 05:15:14 +04: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}"
2017-03-09 17:43:59 +04:00
publish:docker:alphanet:
stage: publish
image: docker:latest
tags:
- public_docker_builder
only:
- alphanet@tezos/tezos
script:
- mkdir -p ~/.docker ;
- echo "$CI_DOCKER_AUTH" > ~/.docker/config.json ;
- docker tag "${CI_REGISTRY_IMAGE}:${CI_BUILD_REF}.patched"
"${public_docker_image}:alphanet"
- docker push "${public_docker_image}:alphanet"
- docker rmi "${public_docker_image}:alphanet"
- docker rmi "${CI_REGISTRY_IMAGE}:${CI_BUILD_REF}.patched"
publish:docker:alphanet_next:
stage: publish
image: docker:latest
tags:
- public_docker_builder
only:
- master@tezos/tezos
script:
- mkdir -p ~/.docker ;
- echo "$CI_DOCKER_AUTH" > ~/.docker/config.json ;
- docker tag "${CI_REGISTRY_IMAGE}:${CI_BUILD_REF}.patched"
"${public_docker_image}:alphanet_next"
- docker push "${public_docker_image}:alphanet_next"
- docker rmi "${public_docker_image}:alphanet_next"
- docker rmi "${CI_REGISTRY_IMAGE}:${CI_BUILD_REF}.patched"
publish:github:
image: ocaml/opam
stage: publish
2016-09-08 21:13:10 +04: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 21:13:10 +04: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"
2017-03-09 17:43:59 +04:00
src/client/embedded/bootstrap/mining/
scripts/alphanet.sh
scripts/alphanet_constants.patch
scripts/alphanet_next.patch'
2016-09-08 21:13:10 +04:00
--env-filter
2016-09-21 17:36:45 +04: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 21:13:10 +04:00
HEAD
2017-01-23 14:46:56 +04:00
- git push git@github.com:tezos/tezos.git -f HEAD:master
2016-09-08 21:13:10 +04:00
2017-03-09 17:43:59 +04:00
deploy:alphanet:
image: ocaml/opam
stage: deploy
tags:
- tezos_builder
only:
- alphanet@tezos/tezos
script:
- echo "${CI_KH}" > ~/.ssh/known_hosts
- echo "${CI_PK_ALPHANET}" > ~/.ssh/id_ed25519
- chmod 400 ~/.ssh/id_ed25519
- ssh greg@zo.gbzm.fr
- ssh tezos@35.167.138.212
- ssh tezos@35.165.227.4
allow_failure: true
deploy:alphanet_next:
image: ocaml/opam
stage: deploy
tags:
- tezos_builder
only:
- master@tezos/tezos
script:
- echo "${CI_KH}" > ~/.ssh/known_hosts
- echo "${CI_PK_ALPHANET_NEXT}" > ~/.ssh/id_ed25519
- chmod 400 ~/.ssh/id_ed25519
- echo | ssh -v greg@zo.gbzm.fr
2017-03-09 17:43:59 +04:00
allow_failure: true
2016-09-08 21:13:10 +04:00
cleanup:
stage: cleanup
2017-03-05 05:15:14 +04:00
image: docker:latest
2016-09-08 21:13:10 +04:00
tags:
- docker_builder
script:
2017-03-05 05:15:14 +04: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 12:18:35 +04: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 05:15:14 +04:00
- docker rmi "${CI_REGISTRY_IMAGE}:${CI_BUILD_REF}"
2016-09-08 21:13:10 +04:00
when: always
allow_failure: true