[DO NOT MERGE]: ci/nightly develop build #1825
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586869783/CI+Develop | |
# Workflow which controls starts nested workflows. | |
name: develop | |
# Triger: PR at 'develop' branch with following types of events. | |
on: | |
pull_request: | |
branches: [ 'develop' ] | |
types: [ opened, reopened, synchronize, ready_for_review, converted_to_draft ] | |
workflow_dispatch: | |
#Concurency group for control execution queue over github runners. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
# List of a jobs included into Workflow. | |
jobs: | |
yarn-dev: | |
if: github.event.pull_request.draft == false # Conditional check for draft per job. | |
uses: ./.github/workflows/yarn-dev.yml | |
secrets: inherit | |
unit-test: | |
if: github.event.pull_request.draft == false # Conditional check for draft per job. | |
uses: ./.github/workflows/unit-test.yml | |
secrets: inherit | |
canary: | |
if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'CI-canary')) }} # Conditional check for draft & labels per job. | |
uses: ./.github/workflows/canary.yml | |
secrets: inherit # pass all secrets from initial workflow to nested | |
xcm: | |
if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'CI-xcm')) }} # Conditional check for draft & labels per job. | |
uses: ./.github/workflows/xcm.yml | |
secrets: inherit # pass all secrets from initial workflow to nested | |
collator-selection: | |
if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'CI-collator-selection')) }} # Conditional check for draft & labels per job. | |
uses: ./.github/workflows/collator-selection.yml | |
secrets: inherit | |
forkless-update-data: | |
if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'CI-forkless')) }} # Conditional check for draft & labels per job. | |
uses: ./.github/workflows/forkless-update-data.yml | |
secrets: inherit # pass all secrets from initial workflow to nested | |
forkless-update-no-data: | |
if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'CI-forkless')) }} # Conditional check for draft & labels per job. | |
uses: ./.github/workflows/forkless-update-nodata.yml | |
secrets: inherit # pass all secrets from initial workflow to nested | |
try-runtime: | |
if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'CI-forkless')) }} # Conditional check for draft & labels per job. | |
uses: ./.github/workflows/try-runtime.yml | |
secrets: inherit # pass all secrets from initial workflow to nested | |
node-only-update: | |
if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'CI-node-only-update')) }} # Conditional check for draft & labels per job. | |
uses: ./.github/workflows/node-only-update.yml | |
secrets: inherit | |
codestyle: | |
if: github.event.pull_request.draft == false # Conditional check for draft per job. | |
uses: ./.github/workflows/codestyle.yml | |
secrets: inherit |