difftreelog
change concurency scope
in: master
7 files changed
.github/workflows/build-test-master.ymldiffbeforeafterboth19env:19env:20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}2122concurrency: 23 group: ${{ github.workflow }}-${{ github.ref }}24 cancel-in-progress: true212522# A workflow run is made up of one or more jobs that can run sequentially or in parallel26# A workflow run is made up of one or more jobs that can run sequentially or in parallel23jobs:27jobs:27 runs-on: [self-hosted-ci,large]31 runs-on: [self-hosted-ci,large]28 timeout-minutes: 138032 timeout-minutes: 13802930 concurrency: 31 group: ${{ github.workflow }}-${{ github.ref }}32 cancel-in-progress: true333334 name: ${{ matrix.network }}34 name: ${{ matrix.network }}3535.github/workflows/codestyle.ymldiffbeforeafterboth10 - synchronize10 - synchronize11 - ready_for_review11 - ready_for_review1213concurrency: 14 group: ${{ github.workflow }}-${{ github.ref }}15 cancel-in-progress: true121613jobs:17jobs:14 rustfmt:18 rustfmt:15 runs-on: self-hosted-ci19 runs-on: self-hosted-ci16 17 concurrency: 18 group: ${{ github.workflow }}-${{ github.ref }}19 cancel-in-progress: true202021 steps:21 steps:22 - name: Skip if pull request is in Draft22 - name: Skip if pull request is in Draft52 if: ${{ false }}52 if: ${{ false }}53 runs-on: self-hosted-ci53 runs-on: self-hosted-ci54 54 55 concurrency: 56 group: ${{ github.workflow }}-${{ github.ref }}57 cancel-in-progress: true5859 steps:55 steps:60 - name: Skip if pull request is in Draft56 - name: Skip if pull request is in Draft.github/workflows/fork-update-withdata.ymldiffbeforeafterboth19env:19env:20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}2122concurrency: 23 group: ${{ github.workflow }}-${{ github.ref }}24 cancel-in-progress: true212522# A workflow run is made up of one or more jobs that can run sequentially or in parallel26# A workflow run is made up of one or more jobs that can run sequentially or in parallel23jobs:27jobs:27 runs-on: [self-hosted-ci,large]31 runs-on: [self-hosted-ci,large]28 timeout-minutes: 138032 timeout-minutes: 13802930 concurrency: 31 group: ${{ github.workflow }}-${{ github.ref }}32 cancel-in-progress: true333334 name: ${{ matrix.network }}34 name: ${{ matrix.network }}3535.github/workflows/forkless-update-nodata.ymldiffbeforeafterboth19env:19env:20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}2122concurrency: 23 group: ${{ github.workflow }}-${{ github.ref }}24 cancel-in-progress: true212522# A workflow run is made up of one or more jobs that can run sequentially or in parallel26# A workflow run is made up of one or more jobs that can run sequentially or in parallel23jobs:27jobs:30 outputs:34 outputs:31 matrix: ${{ steps.create_matrix.outputs.matrix }}35 matrix: ${{ steps.create_matrix.outputs.matrix }}3233 concurrency: 34 group: ${{ github.workflow }}-${{ github.ref }}35 cancel-in-progress: true363637 steps:37 steps:38 38 63 # The type of runner that the job will run on63 # The type of runner that the job will run on64 runs-on: [self-hosted-ci,medium]64 runs-on: [self-hosted-ci,medium]65 65 66 concurrency: 66 67 group: ${{ github.workflow }}-${{ github.ref }}68 cancel-in-progress: true696770 timeout-minutes: 138068 timeout-minutes: 13807169.github/workflows/node_build_test.ymldiffbeforeafterboth19env:19env:20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}2122concurrency: 23 group: ${{ github.workflow }}-${{ github.ref }}24 cancel-in-progress: true212522# A workflow run is made up of one or more jobs that can run sequentially or in parallel26# A workflow run is made up of one or more jobs that can run sequentially or in parallel23jobs:27jobs:26 runs-on: [self-hosted-ci,medium]30 runs-on: [self-hosted-ci,medium]27 timeout-minutes: 138031 timeout-minutes: 13802829 concurrency: 30 group: ${{ github.workflow }}-${{ github.ref }}31 cancel-in-progress: true323233 name: ${{ matrix.network }}33 name: ${{ matrix.network }}3434.github/workflows/tests_codestyle.ymldiffbeforeafterboth10 - synchronize10 - synchronize11 - ready_for_review11 - ready_for_review1213concurrency: 14 group: ${{ github.workflow }}-${{ github.ref }}15 cancel-in-progress: true121613jobs:17jobs:14 code_style:18 code_style:15 runs-on: self-hosted-ci19 runs-on: self-hosted-ci1617 concurrency: 18 group: ${{ github.workflow }}-${{ github.ref }}19 cancel-in-progress: true202021 steps:21 steps:22 - name: Skip if pull request is in Draft22 - name: Skip if pull request is in Draft.github/workflows/try-runtime.ymldiffbeforeafterboth19env:19env:20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}2122concurrency: 23 group: ${{ github.workflow }}-${{ github.ref }}24 cancel-in-progress: true212522# A workflow run is made up of one or more jobs that can run sequentially or in parallel26# A workflow run is made up of one or more jobs that can run sequentially or in parallel23jobs:27jobs:24 try-runtime:28 try-runtime:25 # The type of runner that the job will run on29 # The type of runner that the job will run on26 runs-on: self-hosted-ci30 runs-on: self-hosted-ci2731 28 concurrency: 29 group: ${{ github.workflow }}-${{ github.ref }}30 cancel-in-progress: true3132 name: ${{ matrix.network }} - Try-runtime32 name: ${{ matrix.network }}333334 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.34 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.3535