Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:paritytech/polkadot into kiz-comp…
Browse files Browse the repository at this point in the history
…-validator-in-bags
  • Loading branch information
kianenigma committed Mar 23, 2022
2 parents d969db7 + 6d5578d commit bfa88e2
Show file tree
Hide file tree
Showing 588 changed files with 20,425 additions and 12,366 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
version:
description: version to build/release
default: v0.9.17
default: v0.9.18
required: true
date:
description: release date of version
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/publish-draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ jobs:
KUSAMA_DIGEST: ${{ github.workspace}}/kusama-srtool-json/kusama_srtool_output.json
POLKADOT_DIGEST: ${{ github.workspace}}/polkadot-srtool-json/polkadot_srtool_output.json
PRE_RELEASE: ${{ github.event.inputs.pre_release }}
HIDE_SRTOOL_ROCOCO: false
run: |
find ${{env.GITHUB_WORKSPACE}} -type f -name "*_srtool_output.json"
ls -al $ROCOCO_DIGEST
Expand All @@ -118,7 +117,7 @@ jobs:
cd polkadot/scripts/changelog
./bin/changelog
./bin/changelog ${GITHUB_REF}
ls -al release-notes.md
ls -al context.json
Expand Down
28 changes: 25 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ variables:
CI_IMAGE: "paritytech/ci-linux:production"
DOCKER_OS: "debian:stretch"
ARCH: "x86_64"
ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.2.14"
ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.2.19"
VAULT_SERVER_URL: "https://vault.parity-mgmt-vault.parity.io"
VAULT_AUTH_PATH: "gitlab-parity-io-jwt"
VAULT_AUTH_ROLE: "cicd_gitlab_parity_${CI_PROJECT_NAME}"
Expand Down Expand Up @@ -688,7 +688,7 @@ zombienet-tests-parachains-pvf:
- /home/nonroot/zombie-net/scripts/run-test-env-manager.sh
--github-remote-dir="${GH_DIR}"
--test="0001-parachains-pvf.feature"
allow_failure: true
allow_failure: false
retry: 2
tags:
- zombienet-polkadot-integration-test
Expand Down Expand Up @@ -718,7 +718,7 @@ zombienet-tests-parachains-disputes:
- /home/nonroot/zombie-net/scripts/run-test-env-manager.sh
--github-remote-dir="${GH_DIR}"
--test="0002-parachains-disputes.feature"
allow_failure: true
allow_failure: false
retry: 2
tags:
- zombienet-polkadot-integration-test
Expand Down Expand Up @@ -803,3 +803,25 @@ publish-rustdoc:
- echo "___Rustdoc was successfully published to https://paritytech.github.io/polkadot/___"
after_script:
- rm -rf .git/ ./*

#### stage: .post

# This job cancels the whole pipeline if any of provided jobs fail.
# In a DAG, every jobs chain is executed independently of others. The `fail_fast` principle suggests
# to fail the pipeline as soon as possible to shorten the feedback loop.
cancel-pipeline:
stage: .post
needs:
- job: test-linux-stable
artifacts: false
- job: check-runtime-benchmarks
artifacts: false
- job: check-try-runtime
artifacts: false
rules:
- if: $CI_COMMIT_REF_NAME =~ /^[0-9]+$/ # PRs
when: on_failure
variables:
PROJECT_ID: "${CI_PROJECT_ID}"
PIPELINE_ID: "${CI_PIPELINE_ID}"
trigger: "parity/infrastructure/ci_cd/pipeline-stopper"
Loading

0 comments on commit bfa88e2

Please sign in to comment.