CI update according to latest substrate (#174)

This commit is contained in:
gabriel klawitter
2019-03-07 20:44:32 +01:00
committed by Bastian Köcher
parent 7e6183f74c
commit 448c23dc52
+137 -82
View File
@@ -1,7 +1,8 @@
# .gitlab-ci.yml # .gitlab-ci.yml
# #
# polkadot
#
# pipelines can be triggered manually in the web # pipelines can be triggered manually in the web
# setting POLKADOT_BRANCH to v0.2 will result in a poc2 build
# setting DEPLOY_TAG will only deploy the tagged image # setting DEPLOY_TAG will only deploy the tagged image
@@ -12,53 +13,44 @@ stages:
- publish - publish
- deploy - deploy
# default release in rust:nightly image is stable
image: parity/rust:nightly image: parity/rust:nightly
variables: variables:
CI_SERVER_NAME: "GitLab CI" CI_SERVER_NAME: "GitLab CI"
CARGO_HOME: "${CI_PROJECT_DIR}/.cargo" CARGO_HOME: "${CI_PROJECT_DIR}/.cargo"
SUBSTRATE_REPO: "https://github.com/paritytech/substrate.git" # have OS based build containers in the future
DOCKER_OS: "ubuntu:xenial"
ARCH: "x86_64"
cache: {} cache: {}
.collect_artifacts: &collect_artifacts .collect-artifacts: &collect-artifacts
artifacts: artifacts:
name: "${CI_JOB_NAME}_${CI_COMMIT_REF_NAME}" name: "${CI_JOB_NAME}_${CI_COMMIT_REF_NAME}"
when: on_success when: on_success
expire_in: 7 days expire_in: 7 days
paths: paths:
- target/release/ - artifacts/
.kubernetes_build: &kubernetes_build .kubernetes-build: &kubernetes-build
tags: tags:
- kubernetes-parity-build - kubernetes-parity-build
environment: environment:
name: gke-build name: parity-build
# disabled as there are bugs
# before_script:
# - ./scripts/build.sh
#### stage: merge-test #### stage: merge-test
check:merge:conflict: check-merge-conflict:
stage: merge-test stage: merge-test
image: parity/tools:latest image: parity/tools:latest
cache: {} cache: {}
<<: *kubernetes_build <<: *kubernetes-build
only: only:
- /^[0-9]+$/ - /^[0-9]+$/
variables: variables:
@@ -70,18 +62,22 @@ check:merge:conflict:
# test will be run for ci on the current repo test-linux-stable: &test
# for version v0.2 branch tests are located in substrate repository and
# therefore not generically testable
test:rust:release:
stage: test stage: test
cache: cache:
key: "${CI_JOB_NAME}-test" key: "${CI_JOB_NAME}-test"
paths: paths:
- ${CARGO_HOME} - ${CARGO_HOME}
- ./target - ./target
variables:
RUST_TOOLCHAIN: stable
# Enable debug assertions since we are running optimized builds for testing
# but still want to have debug assertions.
RUSTFLAGS: -Cdebug-assertions=y
TARGET: native
tags:
- linux-docker
only: only:
- triggers
- tags - tags
- master - master
- schedules - schedules
@@ -89,109 +85,142 @@ test:rust:release:
- /^[0-9]+$/ - /^[0-9]+$/
except: except:
variables: variables:
- $POLKADOT_BRANCH == "v0.2"
- $DEPLOY_TAG - $DEPLOY_TAG
tags: before_script:
- rust - test -d ${CARGO_HOME} -a -d ./target &&
echo "build cache size:" &&
du -h --max-depth=2 ${CARGO_HOME} ./target
- ./scripts/build.sh
script: script:
- time cargo test --all --release --verbose - time cargo test --all --release --verbose --locked
build:rust:linux:release:
.build-only: &build-only
only:
- master
- tags
- web
build-linux-release: &build
stage: build stage: build
cache: cache:
key: "${CI_JOB_NAME}-build" key: "${CI_JOB_NAME}-build"
paths: paths:
- ${CARGO_HOME} - ${CARGO_HOME}
- ./target - ./target
<<: *collect_artifacts <<: *collect-artifacts
only: <<: *build-only
- master
- tags
- web
except: except:
variables: variables:
- $DEPLOY_TAG - $DEPLOY_TAG
tags: tags:
- rust - linux-docker
before_script:
- ./scripts/build.sh
script: script:
- > - time cargo build --release --verbose
set -x; - mkdir -p ./artifacts
if [ "${POLKADOT_BRANCH}" = "v0.2" ]; then - mv ./target/release/polkadot ./artifacts/.
if [ -z "${TAG}" ]; then - echo -n "Polkadot version = "
time cargo install --verbose --root ./target/release/ --git "${SUBSTRATE_REPO}" --branch "${POLKADOT_BRANCH}" polkadot; - if [ "${CI_COMMIT_TAG}" ]; then
echo "${CI_COMMIT_TAG}" | tee ./artifacts/VERSION;
else else
time cargo install --verbose --root ./target/release/ --git "${SUBSTRATE_REPO}" --tag "${TAG}" polkadot; ./artifacts/polkadot --version |
fi; sed -n -r 's/^polkadot ([0-9.]+.*-[0-9a-f]{7,13})-.*$/\1/p' |
mv ./target/release/bin/polkadot ./target/release/polkadot; tee ./artifacts/VERSION;
rm -d ./target/release/bin; fi
else - sha256sum ./artifacts/polkadot | tee ./artifacts/polkadot.sha256
time cargo build --release --verbose; - cp -r scripts/docker/* ./artifacts
fi;
set +x
- ./target/release/polkadot --version
dockerize:release:
.publish-build: &publish-build
stage: publish stage: publish
dependencies: dependencies:
- build:rust:linux:release - build-linux-release
cache: {} cache: {}
only: <<: *build-only
- master <<: *kubernetes-build
- tags
- web
except:
publish-docker-release:
<<: *publish-build
image: docker:stable
services:
- docker:dind
# collect VERSION artifact here to pass it on to kubernetes
<<: *collect-artifacts
variables: variables:
- $DEPLOY_TAG DOCKER_HOST: tcp://localhost:2375
tags: DOCKER_DRIVER: overlay2
- shell GIT_STRATEGY: none
variables: # DOCKERFILE: scripts/docker/Dockerfile
DOCKERFILE: scripts/docker/Dockerfile
CONTAINER_IMAGE: parity/polkadot CONTAINER_IMAGE: parity/polkadot
before_script: before_script:
- test "$Docker_Hub_User_Parity" -a "$Docker_Hub_Pass_Parity" - test "$Docker_Hub_User_Parity" -a "$Docker_Hub_Pass_Parity"
|| ( echo "no docker credentials provided"; exit 1 ) || ( echo "no docker credentials provided"; exit 1 )
- docker login -u "$Docker_Hub_User_Parity" -p "$Docker_Hub_Pass_Parity" - docker login -u "$Docker_Hub_User_Parity" -p "$Docker_Hub_Pass_Parity"
- docker info - docker info
- VERSION="$(./target/release/polkadot --version | sed -n -r 's/^polkadot ([0-9.]+-[0-9a-f]+)-.*$/\1/p')"
- export VERSION
- echo "Polkadot version = ${VERSION}"
script: script:
- VERSION="$(cat ./artifacts/VERSION)"
- echo "Polkadot version = ${VERSION}"
- test -z "${VERSION}" && exit 1 - test -z "${VERSION}" && exit 1
- docker build --tag $CONTAINER_IMAGE:$VERSION --tag $CONTAINER_IMAGE:latest -f $DOCKERFILE ./target/release/ - cd ./artifacts
- docker build --tag $CONTAINER_IMAGE:$VERSION --tag $CONTAINER_IMAGE:latest .
- docker push $CONTAINER_IMAGE:$VERSION - docker push $CONTAINER_IMAGE:$VERSION
- docker push $CONTAINER_IMAGE:latest - docker push $CONTAINER_IMAGE:latest
- rm -f ./target/release/polkadot
- echo "${VERSION}" > ./target/release/VERSION
after_script: after_script:
- docker logout - docker logout
# use artifacts here to transport the version to the next stage # only VERSION information is needed for the deployment
<<: *collect_artifacts - find ./artifacts/ -depth -not -name VERSION -not -name artifacts -delete
publish-s3-release:
<<: *publish-build
image: parity/awscli:latest
variables:
GIT_STRATEGY: none
BUCKET: "releases.parity.io"
PREFIX: "polkadot/${ARCH}-${DOCKER_OS}"
script:
- aws s3 sync ./artifacts/ s3://${BUCKET}/${PREFIX}/$(cat ./artifacts/VERSION)/
- echo "update objects in latest path"
- for file in ./artifacts/*; do
name="$(basename ${file})";
aws s3api copy-object
--copy-source ${BUCKET}/${PREFIX}/$(cat ./artifacts/VERSION)/${name}
--bucket ${BUCKET} --key ${PREFIX}/latest/${name};
done
after_script:
- aws s3 ls s3://${BUCKET}/${PREFIX}/latest/
--recursive --human-readable --summarize
.deploy:template: &deploy .deploy-template: &deploy
stage: deploy stage: deploy
when: manual when: manual
cache: {} cache: {}
retry: 1 retry: 1
image: dtzar/helm-kubectl:$HELM_VERSION image: parity/kubectl-helm:$HELM_VERSION
only: <<: *build-only
- master
- tags
- web
tags: tags:
# this is the runner that is used to deploy it # this is the runner that is used to deploy it
- kubernetes-parity-build - kubernetes-parity-build
before_script: before_script:
- test -z "${DEPLOY_TAG}" && - test -z "${DEPLOY_TAG}" &&
test -f ./target/release/VERSION && test -f ./artifacts/VERSION &&
DEPLOY_TAG="$(cat ./target/release/VERSION)" DEPLOY_TAG="$(cat ./artifacts/VERSION)"
- test "${DEPLOY_TAG}" || ( echo "Neither DEPLOY_TAG nor VERSION information available"; exit 1 ) - test "${DEPLOY_TAG}" || ( echo "Neither DEPLOY_TAG nor VERSION information available"; exit 1 )
script: script:
- echo "Polkadot version = ${DEPLOY_TAG}" - echo "Polkadot version = ${DEPLOY_TAG}"
@@ -199,7 +228,7 @@ dockerize:release:
- helm template - helm template
--values ./scripts/kubernetes/values.yaml --values ./scripts/kubernetes/values.yaml
--set image.tag=${DEPLOY_TAG} --set image.tag=${DEPLOY_TAG}
./scripts/kubernetes | kubectl apply -f - --dry-run=true ./scripts/kubernetes | kubectl apply -f - --dry-run=false
- echo "# polkadot namespace" - echo "# polkadot namespace"
- kubectl -n polkadot get all - kubectl -n polkadot get all
- echo "# polkadot's nodes' external ip addresses:" - echo "# polkadot's nodes' external ip addresses:"
@@ -211,16 +240,42 @@ dockerize:release:
# have environment:url eventually point to the logs
deploy:ew3:
.deploy-cibuild: &deploy-cibuild
<<: *deploy <<: *deploy
dependencies:
- publish-docker-release
.deploy-tag: &deploy-tag
<<: *deploy
only:
variables:
- $DEPLOY_TAG
# have environment:url eventually point to the logs
deploy-ew3:
<<: *deploy-cibuild
environment: environment:
name: parity-prod-ew3 name: parity-prod-ew3
deploy:ue1: deploy-ue1:
<<: *deploy <<: *deploy-cibuild
environment:
name: parity-prod-ue1
deploy-ew3-tag:
<<: *deploy-tag
environment:
name: parity-prod-ew3
deploy-ue1-tag:
<<: *deploy-tag
environment: environment:
name: parity-prod-ue1 name: parity-prod-ue1