148 lines
2.9 KiB
YAML
148 lines
2.9 KiB
YAML
variables:
|
|
ocaml_image: alpine_ocaml-4.03.0
|
|
build_image_name: ocp_tezos_build
|
|
build_image_id: ${CI_BUILD_REF}
|
|
build_image: ${build_image_name}:${ocaml_image}
|
|
|
|
image: ${build_image}_${build_image_id}
|
|
|
|
stages:
|
|
- build_deps
|
|
- build
|
|
- build_test
|
|
- test
|
|
- publish
|
|
- cleanup
|
|
|
|
build_deps:
|
|
stage: build_deps
|
|
image: ocp:docker
|
|
tags:
|
|
- docker_builder
|
|
script:
|
|
- ./scripts/create_docker_builder.sh
|
|
${build_image_name} ${ocaml_image} "_${build_image_id}"
|
|
|
|
build:
|
|
stage: build
|
|
tags:
|
|
- tezos_builder
|
|
script:
|
|
- make -j4
|
|
artifacts:
|
|
expire_in: 1 week
|
|
untracked: true
|
|
|
|
build:test:
|
|
stage: build_test
|
|
tags:
|
|
- tezos_builder
|
|
script:
|
|
- make -C test build-test -j4
|
|
dependencies:
|
|
- build
|
|
artifacts:
|
|
expire_in: 1 week
|
|
untracked: true
|
|
|
|
test:store:
|
|
stage: test
|
|
tags:
|
|
- tezos_builder
|
|
script:
|
|
- make -C test run-test-store
|
|
dependencies:
|
|
- build
|
|
- build:test
|
|
|
|
test:context:
|
|
stage: test
|
|
tags:
|
|
- tezos_builder
|
|
script:
|
|
- make -C test run-test-context
|
|
dependencies:
|
|
- build
|
|
- build:test
|
|
|
|
test:state:
|
|
stage: test
|
|
tags:
|
|
- tezos_builder
|
|
script:
|
|
- make -C test run-test-state
|
|
dependencies:
|
|
- build
|
|
- build:test
|
|
|
|
test:basic:
|
|
stage: test
|
|
tags:
|
|
- tezos_builder
|
|
script:
|
|
- make -C test run-test-basic
|
|
dependencies:
|
|
- build
|
|
- build:test
|
|
|
|
test:basic.sh:
|
|
stage: test
|
|
tags:
|
|
- tezos_builder
|
|
script:
|
|
- make -C test run-test-basic.sh
|
|
dependencies:
|
|
- build
|
|
- build:test
|
|
|
|
publish:expurge:
|
|
stage: publish
|
|
tags:
|
|
- tezos_builder
|
|
only:
|
|
- master@tezos/tezos
|
|
script:
|
|
- echo "${CI_KH}" > ~/.ssh/known_hosts
|
|
- echo "${CI_PK}" > ~/.ssh/id_rsa
|
|
- 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
|
|
'export GIT_AUTHOR_NAME="Dynamic Ledger Solutions, Inc." ;
|
|
export GIT_AUTHOR_EMAIL="contact@tezos.com"'
|
|
HEAD
|
|
- git tag ${CI_BUILD_REF}_expurged
|
|
- git push git@gitlab.ocamlpro.com:${CI_PROJECT_PATH}.git
|
|
-f --tags HEAD:master-expurged
|
|
|
|
publish:github:
|
|
image: ocaml/opam:${ocaml_image}
|
|
stage: publish
|
|
tags:
|
|
- tezos_builder
|
|
only:
|
|
- master@tezos/tezos
|
|
when: manual
|
|
script:
|
|
- echo "${CI_KH}" > ~/.ssh/known_hosts
|
|
- echo "${CI_PK}" > ~/.ssh/id_rsa
|
|
- chmod 400 ~/.ssh/id_rsa
|
|
- git reset ${CI_BUILD_REF}_expurged
|
|
- git push git@github.com:OCamlPro/tezos.git
|
|
-f HEAD:master
|
|
|
|
cleanup:
|
|
stage: cleanup
|
|
image: ocp:docker
|
|
tags:
|
|
- docker_builder
|
|
script:
|
|
- docker tag ${build_image}_${build_image_id}
|
|
${build_image}_${CI_PROJECT_NAMESPACE}_${CI_BUILD_REF_NAME}
|
|
- docker rmi ${build_image}_${build_image_id}
|
|
when: always
|