stages: - test - build - publish - publish-onchain - optional image: parity/rust-parity-ethereum-build:stretch variables: GIT_STRATEGY: fetch GIT_SUBMODULE_STRATEGY: recursive CI_SERVER_NAME: "GitLab CI" CARGO_HOME: "${CI_PROJECT_DIR}/.cargo" CARGO_TARGET: x86_64-unknown-linux-gnu .releaseable_branches: # list of git refs for building GitLab artifacts (think "pre-release binaries") only: &releaseable_branches - stable - beta - tags - schedules .collect_artifacts: &collect_artifacts artifacts: name: "${CI_JOB_NAME}_${SCHEDULE_TAG:-${CI_COMMIT_REF_NAME}}" when: on_success expire_in: 1 mos paths: - artifacts/ .determine_version: &determine_version - VERSION="$(sed -r -n '1,/^version/s/^version = "([^"]+)".*$/\1/p' Cargo.toml)" - DATE_STR="$(date +%Y%m%d)" - ID_SHORT="$(echo ${CI_COMMIT_SHA} | cut -c 1-7)" - test "${SCHEDULE_TAG:-${CI_COMMIT_REF_NAME}}" = "nightly" && VERSION="${VERSION}-${ID_SHORT}-${DATE_STR}" - export VERSION - echo "Version = ${VERSION}" test-linux: stage: test variables: RUN_TESTS: all script: - scripts/gitlab/test-all.sh - sccache -s tags: - linux-docker test-audit: stage: test script: - set -e - set -u - cargo audit tags: - linux-docker build-linux: stage: build only: *releaseable_branches script: - scripts/gitlab/build-unix.sh - sccache -s <<: *collect_artifacts tags: - linux-docker build-darwin: stage: build only: *releaseable_branches variables: CARGO_TARGET: x86_64-apple-darwin CC: gcc CXX: g++ script: - scripts/gitlab/build-unix.sh tags: - rust-osx <<: *collect_artifacts build-windows: stage: build only: *releaseable_branches variables: CARGO_TARGET: x86_64-pc-windows-msvc script: - sh scripts/gitlab/build-windows.sh tags: - rust-windows <<: *collect_artifacts publish-docker: stage: publish only: *releaseable_branches cache: {} dependencies: - build-linux tags: - shell script: - scripts/gitlab/publish-docker.sh parity publish-snap: stage: publish only: *releaseable_branches image: parity/snapcraft:gitlab-ci variables: BUILD_ARCH: amd64 cache: {} before_script: *determine_version dependencies: - build-linux tags: - rust-stable script: - scripts/gitlab/publish-snap.sh allow_failure: true <<: *collect_artifacts publish-onnet-update: stage: publish-onchain only: *releaseable_branches cache: {} dependencies: - build-linux - build-darwin - build-windows - publish-awss3-release before_script: *determine_version script: - scripts/gitlab/publish-onnet-update.sh tags: - linux-docker # configures aws for fast uploads/syncs .s3-before-script: &s3-before-script before_script: - mkdir -p ${HOME}/.aws - | cat > ${HOME}/.aws/config <