5a7e54fb9e
* version: mark 2.2.0 beta * ci: remove failing tests for android, windows, and macos (#9788) * ci: remove failing tests for android, windows, and macos * ci: restore android build jobs * Move state root verification before gas used (#9841) * Classic.json Bootnode Update (#9828) * fix: Update bootnodes list to only responsive nodes * feat: Add more bootnodes to classic.json list * feat: Add retested bootnodes * Implement NoProof for json tests and update tests reference (replaces #9744) (#9814) * Update test reference. Block test are really not working so I disabled a few by commenting directly in source. * Move ethtest commit cursor. * Implements 'NoProof' engine from https://github.com/ethereum/tests/issues/464 . Since tests has been regenerated those one were failing on block difficulty check. Update ethereum/tests, waiting for cost fix (block test are still commented). * Update tests submodule reference to latest (all test passing except an identified case). Fix block reward of constantinople json. * Restore broken test by using old json tests files. * Use CanonNoSeal instead of a custom engine, still have to include some additional tests code. * Gas upper limit check in json_chain test was bad, moving the test to verification, the test is running in `verify_header_param`. Note that test was previously only for ethash, and now for any engine. * Restore old behavior (gas uper limit only for ethash engine), at the cost of an additional trait method. * Proper rpc test fix. * Update tests submodule, add SStore bug tests. * Fix json issue tabulation. Update tests submodule to latest master (lot of new sstore tests passing) * Switch ethereum/tests to tag 6.0.0-beta.1 (no tests changes from latest synch). * Display hex with separator, use indirection instead of clone for copy types.
161 lines
4.0 KiB
YAML
161 lines
4.0 KiB
YAML
stages:
|
|
- test
|
|
- build
|
|
- publish
|
|
- optional
|
|
|
|
image: parity/rust:gitlab-ci
|
|
|
|
variables:
|
|
CI_SERVER_NAME: "GitLab CI"
|
|
CARGO_HOME: "${CI_PROJECT_DIR}/.cargo"
|
|
BUILD_TARGET: ubuntu
|
|
BUILD_ARCH: amd64
|
|
CARGO_TARGET: x86_64-unknown-linux-gnu
|
|
|
|
cache:
|
|
key: "${CI_JOB_NAME}"
|
|
paths:
|
|
- ./target
|
|
- ./.cargo
|
|
|
|
.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 stable
|
|
tags:
|
|
- rust-stable
|
|
|
|
build-linux:
|
|
stage: build
|
|
only: *releaseable_branches
|
|
variables:
|
|
CARGO_TARGET: x86_64-unknown-linux-gnu
|
|
script:
|
|
- scripts/gitlab/build-unix.sh
|
|
<<: *collect_artifacts
|
|
tags:
|
|
- rust-stable
|
|
|
|
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-awss3:
|
|
stage: publish
|
|
only: *releaseable_branches
|
|
cache: {}
|
|
dependencies:
|
|
- build-linux
|
|
- build-darwin
|
|
- build-windows
|
|
before_script: *determine_version
|
|
script:
|
|
- scripts/gitlab/publish-awss3.sh
|
|
tags:
|
|
- shell
|
|
|
|
docs-jsonrpc:
|
|
stage: optional
|
|
only:
|
|
- tags
|
|
except:
|
|
- nightly
|
|
cache: {}
|
|
script:
|
|
- scripts/gitlab/docs-jsonrpc.sh
|
|
tags:
|
|
- shell
|
|
|
|
cargo-audit:
|
|
stage: optional
|
|
script:
|
|
- scripts/gitlab/cargo-audit.sh
|
|
tags:
|
|
- rust-stable
|
|
|
|
build-android:
|
|
stage: optional
|
|
image: parity/rust-android:gitlab-ci
|
|
variables:
|
|
CARGO_TARGET: armv7-linux-androideabi
|
|
script:
|
|
- scripts/gitlab/build-unix.sh
|
|
tags:
|
|
- rust-arm
|
|
|
|
test-beta:
|
|
stage: optional
|
|
variables:
|
|
RUN_TESTS: cargo
|
|
script:
|
|
- scripts/gitlab/test-all.sh beta
|
|
tags:
|
|
- rust-beta
|
|
|
|
test-nightly:
|
|
stage: optional
|
|
variables:
|
|
RUN_TESTS: all
|
|
script:
|
|
- scripts/gitlab/test-all.sh nightly
|
|
tags:
|
|
- rust-nightly
|