mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
f79b75c6c2
* add rococo test and run ci every pr * remove debug logging from ci output * fix run command * Update scripts/ci/gitlab/pipeline/check.yml Co-authored-by: Alexander Samusev <41779041+alvicsam@users.noreply.github.com> * make --checks explicit * fix checks * kick ci * kick ci * kick ci * kick ci --------- Co-authored-by: Alexander Samusev <41779041+alvicsam@users.noreply.github.com>
137 lines
4.0 KiB
YAML
137 lines
4.0 KiB
YAML
# This file is part of .gitlab-ci.yml
|
|
# Here are all jobs that are executed during "check" stage
|
|
|
|
check-runtime:
|
|
stage: check
|
|
image: paritytech/tools:latest
|
|
extends:
|
|
- .kubernetes-env
|
|
rules:
|
|
- if: $CI_COMMIT_REF_NAME =~ /^release-v[0-9]+\.[0-9]+.*$/ # i.e. release-v0.9.27
|
|
variables:
|
|
GITLAB_API: "https://gitlab.parity.io/api/v4"
|
|
GITHUB_API_PROJECT: "parity%2Finfrastructure%2Fgithub-api"
|
|
script:
|
|
- ./scripts/ci/gitlab/check_runtime.sh
|
|
allow_failure: true
|
|
|
|
cargo-fmt:
|
|
stage: check
|
|
extends:
|
|
- .docker-env
|
|
- .test-refs
|
|
script:
|
|
- cargo +nightly --version
|
|
- cargo +nightly fmt --all -- --check
|
|
allow_failure: true
|
|
|
|
# Disabled in https://github.com/paritytech/polkadot/pull/7512
|
|
.spellcheck_disabled:
|
|
stage: check
|
|
extends:
|
|
- .docker-env
|
|
- .test-refs
|
|
script:
|
|
- cargo spellcheck --version
|
|
# compare with the commit parent to the PR, given it's from a default branch
|
|
- git fetch origin +${CI_DEFAULT_BRANCH}:${CI_DEFAULT_BRANCH}
|
|
- echo "___Spellcheck is going to check your diff___"
|
|
- cargo spellcheck list-files -vvv $(git diff --diff-filter=AM --name-only $(git merge-base ${CI_COMMIT_SHA} ${CI_DEFAULT_BRANCH} -- :^bridges))
|
|
- time cargo spellcheck check -vvv --cfg=scripts/ci/gitlab/spellcheck.toml --checkers hunspell --code 1
|
|
$(git diff --diff-filter=AM --name-only $(git merge-base ${CI_COMMIT_SHA} ${CI_DEFAULT_BRANCH} -- :^bridges))
|
|
allow_failure: true
|
|
|
|
check-try-runtime:
|
|
stage: check
|
|
extends:
|
|
- .docker-env
|
|
- .test-refs
|
|
- .compiler-info
|
|
script:
|
|
# Check that everything compiles with `try-runtime` feature flag.
|
|
- cargo check --locked --features try-runtime --all
|
|
|
|
# More info can be found here: https://github.com/paritytech/polkadot/pull/5865
|
|
.check-runtime-migration:
|
|
stage: check
|
|
extends:
|
|
- .docker-env
|
|
- .test-pr-refs
|
|
- .compiler-info
|
|
script:
|
|
- |
|
|
export RUST_LOG=remote-ext=debug,runtime=debug
|
|
echo "---------- Running try-runtime for ${NETWORK} ----------"
|
|
time cargo build --release --locked -p "$NETWORK"-runtime
|
|
time cargo run --locked --release --features try-runtime try-runtime \
|
|
--runtime ./target/release/wbuild/"$NETWORK"-runtime/target/wasm32-unknown-unknown/release/"$NETWORK"_runtime.wasm \
|
|
--chain=${NETWORK}-dev \
|
|
on-runtime-upgrade --checks=pre-and-post live --uri wss://${NETWORK}-try-runtime-node.parity-chains.parity.io:443
|
|
|
|
check-runtime-migration-polkadot:
|
|
stage: check
|
|
extends:
|
|
- .docker-env
|
|
- .test-pr-refs
|
|
- .compiler-info
|
|
- .check-runtime-migration
|
|
variables:
|
|
NETWORK: "polkadot"
|
|
allow_failure: true # FIXME https://github.com/paritytech/substrate/issues/13107
|
|
|
|
check-runtime-migration-kusama:
|
|
stage: check
|
|
extends:
|
|
- .docker-env
|
|
- .test-pr-refs
|
|
- .compiler-info
|
|
- .check-runtime-migration
|
|
variables:
|
|
NETWORK: "kusama"
|
|
allow_failure: true # FIXME https://github.com/paritytech/substrate/issues/13107
|
|
|
|
check-runtime-migration-westend:
|
|
stage: check
|
|
extends:
|
|
- .docker-env
|
|
- .test-pr-refs
|
|
- .compiler-info
|
|
- .check-runtime-migration
|
|
variables:
|
|
NETWORK: "westend"
|
|
allow_failure: true # FIXME https://github.com/paritytech/substrate/issues/13107
|
|
|
|
check-runtime-migration-rococo:
|
|
stage: check
|
|
extends:
|
|
- .docker-env
|
|
- .test-pr-refs
|
|
- .compiler-info
|
|
- .check-runtime-migration
|
|
variables:
|
|
NETWORK: "rococo"
|
|
allow_failure: true # FIXME https://github.com/paritytech/substrate/issues/13107
|
|
|
|
# is broken, need to fix
|
|
check-no-default-features:
|
|
stage: check
|
|
extends:
|
|
- .docker-env
|
|
- .test-refs
|
|
- .compiler-info
|
|
script:
|
|
# Check that polkadot-cli will compile no default features.
|
|
- pushd ./node/service && cargo check --locked --no-default-features && popd
|
|
- pushd ./cli && cargo check --locked --no-default-features --features "service" && popd
|
|
- exit 0
|
|
|
|
# this is artificial job to run some build and tests using DAG
|
|
job-starter:
|
|
stage: check
|
|
image: paritytech/tools:latest
|
|
extends:
|
|
- .kubernetes-env
|
|
- .common-refs
|
|
script:
|
|
- echo ok
|