mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 17:31:03 +00:00
CI: chore (#3957)
* CI: chore * CI: lsof and jq are installed * CI: generate docs with deps * CI: remove check width, fmt checks it * CI: simplify rules * CI: make CI image variable * CI: more chore * rm check_line_width.sh * CI: fix spellcheck; fix check-transaction * CI: return installing jq * lint: remove dupes
This commit is contained in:
+31
-52
@@ -6,7 +6,7 @@
|
||||
# setting DEPLOY_TAG will only deploy the tagged image
|
||||
#
|
||||
# please do not add new jobs without "rules:" and "*-env". There are &rules-test for everything,
|
||||
# &rules-pr-only preset. And "kubernetes-env" with "docker-env" to set a runner
|
||||
# &rules-test-and-rococo preset. And "kubernetes-env" with "docker-env" to set a runner
|
||||
# which executes the job.
|
||||
|
||||
stages:
|
||||
@@ -15,8 +15,6 @@ stages:
|
||||
- publish
|
||||
- deploy
|
||||
|
||||
image: paritytech/ci-linux:production
|
||||
|
||||
workflow:
|
||||
rules:
|
||||
- if: $CI_COMMIT_TAG
|
||||
@@ -26,6 +24,7 @@ variables:
|
||||
GIT_STRATEGY: fetch
|
||||
GIT_DEPTH: 100
|
||||
CI_SERVER_NAME: "GitLab CI"
|
||||
CI_IMAGE: "paritytech/ci-linux:production"
|
||||
DOCKER_OS: "debian:stretch"
|
||||
ARCH: "x86_64"
|
||||
VAULT_SERVER_URL: "https://vault.parity-mgmt-vault.parity.io"
|
||||
@@ -57,6 +56,7 @@ default:
|
||||
- kubernetes-parity-build
|
||||
|
||||
.docker-env: &docker-env
|
||||
image: "${CI_IMAGE}"
|
||||
retry:
|
||||
max: 2
|
||||
when:
|
||||
@@ -75,20 +75,20 @@ default:
|
||||
|
||||
.rules-test: &rules-test
|
||||
# these jobs run always*
|
||||
rules:
|
||||
- if: $CI_COMMIT_REF_NAME == "rococo-v1"
|
||||
when: never
|
||||
- when: always
|
||||
|
||||
.pr-only: &rules-pr-only
|
||||
# these jobs run only on PRs
|
||||
rules:
|
||||
- if: $CI_COMMIT_REF_NAME == "rococo-v1"
|
||||
when: never
|
||||
- if: $CI_PIPELINE_SOURCE == "schedule"
|
||||
when: never
|
||||
- if: $CI_COMMIT_REF_NAME == "master"
|
||||
- if: $CI_COMMIT_REF_NAME =~ /^[0-9]+$/ # PRs
|
||||
|
||||
.rules-test-and-rococo: &rules-test-and-rococo
|
||||
rules:
|
||||
- if: $CI_PIPELINE_SOURCE == "schedule"
|
||||
- if: $CI_COMMIT_REF_NAME == "master"
|
||||
- if: $CI_COMMIT_REF_NAME =~ /^[0-9]+$/ # PRs
|
||||
- if: $CI_COMMIT_REF_NAME == "rococo-v1"
|
||||
|
||||
#### Vault secrets
|
||||
.vault-secrets: &vault-secrets
|
||||
secrets:
|
||||
@@ -144,7 +144,7 @@ check-runtime:
|
||||
stage: test
|
||||
image: paritytech/tools:latest
|
||||
<<: *kubernetes-env
|
||||
<<: *rules-pr-only
|
||||
<<: *rules-test
|
||||
<<: *vault-secrets
|
||||
variables:
|
||||
GITLAB_API: "https://gitlab.parity.io/api/v4"
|
||||
@@ -153,19 +153,10 @@ check-runtime:
|
||||
- ./scripts/gitlab/check_runtime.sh
|
||||
allow_failure: true
|
||||
|
||||
check-line-width:
|
||||
stage: test
|
||||
image: paritytech/tools:latest
|
||||
<<: *kubernetes-env
|
||||
<<: *rules-pr-only
|
||||
script:
|
||||
- ./scripts/gitlab/check_line_width.sh
|
||||
allow_failure: true
|
||||
|
||||
cargo-fmt:
|
||||
stage: test
|
||||
<<: *kubernetes-env
|
||||
<<: *rules-pr-only
|
||||
<<: *docker-env
|
||||
<<: *rules-test
|
||||
script:
|
||||
- cargo +nightly fmt --all -- --check
|
||||
allow_failure: true
|
||||
@@ -239,11 +230,12 @@ check-no-default-features:
|
||||
spellcheck:
|
||||
stage: test
|
||||
<<: *docker-env
|
||||
<<: *rules-pr-only
|
||||
<<: *rules-test
|
||||
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/gitlab/spellcheck.toml --checkers hunspell --code 1
|
||||
$(git diff --diff-filter=AM --name-only $(git merge-base ${CI_COMMIT_SHA} ${CI_DEFAULT_BRANCH} -- :^bridges))
|
||||
@@ -254,11 +246,7 @@ build-adder-collator:
|
||||
<<: *collect-artifacts
|
||||
<<: *docker-env
|
||||
<<: *compiler-info
|
||||
rules:
|
||||
- if: $CI_PIPELINE_SOURCE == "schedule"
|
||||
- if: $CI_COMMIT_REF_NAME == "master"
|
||||
- if: $CI_COMMIT_REF_NAME =~ /^[0-9]+$/ # PRs
|
||||
- if: $CI_COMMIT_REF_NAME == "rococo-v1"
|
||||
<<: *rules-test-and-rococo
|
||||
script:
|
||||
- time cargo build --release --verbose -p test-parachain-adder-collator
|
||||
- sccache -s
|
||||
@@ -294,18 +282,19 @@ check-dependent-cumulus:
|
||||
DEPENDENT_REPO: cumulus
|
||||
|
||||
check-transaction-versions:
|
||||
# image must be ubuntu:20.04 based to match the linkers, this image has npm installed
|
||||
image: paritytech/contracts-ci-linux:production
|
||||
stage: build
|
||||
<<: *rules-test
|
||||
<<: *docker-env
|
||||
<<: *vault-secrets
|
||||
image: node:15
|
||||
needs:
|
||||
- job: test-build-linux-stable
|
||||
artifacts: true
|
||||
before_script:
|
||||
- apt-get -y update; apt-get -y install jq lsof
|
||||
- npm install --ignore-scripts -g @polkadot/metadata-cmp
|
||||
# Set git config
|
||||
- git config remote.origin.url "https://github.com/paritytech/polkadot.git"
|
||||
- git fetch origin release
|
||||
script:
|
||||
- scripts/gitlab/check_extrinsics_ordering.sh
|
||||
@@ -334,7 +323,7 @@ build-rustdoc:
|
||||
- ./crate-docs/
|
||||
script:
|
||||
# FIXME: it fails with `RUSTDOCFLAGS="-Dwarnings"` and `--all-features`
|
||||
- time cargo doc --no-deps --workspace --verbose
|
||||
- time cargo doc --workspace --verbose
|
||||
- rm -f ./target/doc/.lock
|
||||
- mv ./target/doc ./crate-docs
|
||||
# FIXME: remove me after CI image gets nonroot
|
||||
@@ -416,16 +405,12 @@ publish-adder-collator-image:
|
||||
# service image for Simnet
|
||||
stage: build
|
||||
<<: *build-push-image
|
||||
<<: *rules-test-and-rococo
|
||||
variables:
|
||||
<<: *image-variables
|
||||
# scripts/dockerfiles/collator_injected.Dockerfile
|
||||
DOCKERFILE: dockerfiles/collator_injected.Dockerfile
|
||||
IMAGE_NAME: docker.io/paritypr/colander
|
||||
rules:
|
||||
- if: $CI_PIPELINE_SOURCE == "schedule"
|
||||
- if: $CI_COMMIT_REF_NAME == "master"
|
||||
- if: $CI_COMMIT_REF_NAME =~ /^[0-9]+$/ # PRs
|
||||
- if: $CI_COMMIT_REF_NAME == "rococo-v1"
|
||||
needs:
|
||||
- job: build-adder-collator
|
||||
artifacts: true
|
||||
@@ -439,22 +424,20 @@ publish-adder-collator-image:
|
||||
# this artifact is used in simnet-tests job
|
||||
dotenv: ./artifacts/collator.env
|
||||
|
||||
.update_weights: &update-weights
|
||||
update_polkadot_weights: &update-weights
|
||||
stage: build
|
||||
when: manual
|
||||
tags:
|
||||
- weights
|
||||
variables:
|
||||
RUNTIME: polkadot
|
||||
artifacts:
|
||||
paths:
|
||||
- ${RUNTIME}_weights_${CI_COMMIT_SHORT_SHA}.patch
|
||||
script: |
|
||||
./scripts/run_benches_for_runtime.sh $RUNTIME
|
||||
git diff -P > ${RUNTIME}_weights_${CI_COMMIT_SHORT_SHA}.patch
|
||||
|
||||
update_polkadot_weights:
|
||||
<<: *update-weights
|
||||
script:
|
||||
- ./scripts/run_benches_for_runtime.sh $RUNTIME
|
||||
- git diff -P > ${RUNTIME}_weights_${CI_COMMIT_SHORT_SHA}.patch
|
||||
# uses the "shell" executors
|
||||
tags:
|
||||
- weights
|
||||
|
||||
update_kusama_weights:
|
||||
<<: *update-weights
|
||||
@@ -547,6 +530,7 @@ publish-rustdoc:
|
||||
- git commit -m "Updated docs for ${CI_COMMIT_REF_NAME}" ||
|
||||
echo "___Nothing to commit___"
|
||||
- git push origin gh-pages --force
|
||||
- echo "___Rustdoc was successfully published to https://paritytech.github.io/polkadot/___"
|
||||
after_script:
|
||||
- rm -rf .git/ ./*
|
||||
|
||||
@@ -555,7 +539,6 @@ publish-rustdoc:
|
||||
deploy-polkasync-kusama:
|
||||
stage: deploy
|
||||
rules:
|
||||
# former .rules-build
|
||||
- if: $CI_COMMIT_REF_NAME == "rococo-v1"
|
||||
when: never
|
||||
- if: $CI_PIPELINE_SOURCE == "schedule"
|
||||
@@ -570,13 +553,9 @@ simnet-tests:
|
||||
stage: deploy
|
||||
image: "${SIMNET_IMAGE}"
|
||||
<<: *kubernetes-env
|
||||
<<: *rules-test-and-rococo
|
||||
variables:
|
||||
GH_DIR: "https://github.com/paritytech/polkadot/tree/master/simnet_tests"
|
||||
rules:
|
||||
- if: $CI_PIPELINE_SOURCE == "schedule"
|
||||
- if: $CI_COMMIT_REF_NAME == "master"
|
||||
- if: $CI_COMMIT_REF_NAME =~ /^[0-9]+$/ # PRs
|
||||
- if: $CI_COMMIT_REF_NAME == "rococo-v1"
|
||||
needs:
|
||||
- job: publish-polkadot-image
|
||||
- job: publish-adder-collator-image
|
||||
|
||||
Reference in New Issue
Block a user