git.delta.rocks / unique-network / refs/commits / 032326eb63c9

difftreelog

change concurency scope

Alexander Aksenov2022-08-17parent: #49760fd.patch.diff
in: master

7 files changed

modified.github/workflows/build-test-master.ymldiffbeforeafterboth
19env:19env:
20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}
21
22concurrency:
23 group: ${{ github.workflow }}-${{ github.ref }}
24 cancel-in-progress: true
2125
22# 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 parallel
23jobs:27jobs:
27 runs-on: [self-hosted-ci,large]31 runs-on: [self-hosted-ci,large]
28 timeout-minutes: 138032 timeout-minutes: 1380
29
30 concurrency:
31 group: ${{ github.workflow }}-${{ github.ref }}
32 cancel-in-progress: true
3333
34 name: ${{ matrix.network }}34 name: ${{ matrix.network }}
3535
modified.github/workflows/codestyle.ymldiffbeforeafterboth
10 - synchronize10 - synchronize
11 - ready_for_review11 - ready_for_review
12
13concurrency:
14 group: ${{ github.workflow }}-${{ github.ref }}
15 cancel-in-progress: true
1216
13jobs:17jobs:
14 rustfmt:18 rustfmt:
15 runs-on: self-hosted-ci19 runs-on: self-hosted-ci
16
17 concurrency:
18 group: ${{ github.workflow }}-${{ github.ref }}
19 cancel-in-progress: true
2020
21 steps:21 steps:
22 - name: Skip if pull request is in Draft22 - name: Skip if pull request is in Draft
52 if: ${{ false }}52 if: ${{ false }}
53 runs-on: self-hosted-ci53 runs-on: self-hosted-ci
54 54
55 concurrency:
56 group: ${{ github.workflow }}-${{ github.ref }}
57 cancel-in-progress: true
58
59 steps:55 steps:
60 - name: Skip if pull request is in Draft56 - name: Skip if pull request is in Draft
modified.github/workflows/fork-update-withdata.ymldiffbeforeafterboth
19env:19env:
20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}
21
22concurrency:
23 group: ${{ github.workflow }}-${{ github.ref }}
24 cancel-in-progress: true
2125
22# 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 parallel
23jobs:27jobs:
27 runs-on: [self-hosted-ci,large]31 runs-on: [self-hosted-ci,large]
28 timeout-minutes: 138032 timeout-minutes: 1380
29
30 concurrency:
31 group: ${{ github.workflow }}-${{ github.ref }}
32 cancel-in-progress: true
3333
34 name: ${{ matrix.network }}34 name: ${{ matrix.network }}
3535
modified.github/workflows/forkless-update-nodata.ymldiffbeforeafterboth
19env:19env:
20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}
21
22concurrency:
23 group: ${{ github.workflow }}-${{ github.ref }}
24 cancel-in-progress: true
2125
22# 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 parallel
23jobs:27jobs:
30 outputs:34 outputs:
31 matrix: ${{ steps.create_matrix.outputs.matrix }}35 matrix: ${{ steps.create_matrix.outputs.matrix }}
32
33 concurrency:
34 group: ${{ github.workflow }}-${{ github.ref }}
35 cancel-in-progress: true
3636
37 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 on
64 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: true
6967
70 timeout-minutes: 138068 timeout-minutes: 1380
7169
modified.github/workflows/node_build_test.ymldiffbeforeafterboth
19env:19env:
20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}
21
22concurrency:
23 group: ${{ github.workflow }}-${{ github.ref }}
24 cancel-in-progress: true
2125
22# 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 parallel
23jobs:27jobs:
26 runs-on: [self-hosted-ci,medium]30 runs-on: [self-hosted-ci,medium]
27 timeout-minutes: 138031 timeout-minutes: 1380
28
29 concurrency:
30 group: ${{ github.workflow }}-${{ github.ref }}
31 cancel-in-progress: true
3232
33 name: ${{ matrix.network }}33 name: ${{ matrix.network }}
3434
modified.github/workflows/tests_codestyle.ymldiffbeforeafterboth
10 - synchronize10 - synchronize
11 - ready_for_review11 - ready_for_review
12
13concurrency:
14 group: ${{ github.workflow }}-${{ github.ref }}
15 cancel-in-progress: true
1216
13jobs:17jobs:
14 code_style:18 code_style:
15 runs-on: self-hosted-ci19 runs-on: self-hosted-ci
16
17 concurrency:
18 group: ${{ github.workflow }}-${{ github.ref }}
19 cancel-in-progress: true
2020
21 steps:21 steps:
22 - name: Skip if pull request is in Draft22 - name: Skip if pull request is in Draft
modified.github/workflows/try-runtime.ymldiffbeforeafterboth
19env:19env:
20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}
21
22concurrency:
23 group: ${{ github.workflow }}-${{ github.ref }}
24 cancel-in-progress: true
2125
22# 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 parallel
23jobs: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 on
26 runs-on: self-hosted-ci30 runs-on: self-hosted-ci
2731
28 concurrency:
29 group: ${{ github.workflow }}-${{ github.ref }}
30 cancel-in-progress: true
31
32 name: ${{ matrix.network }} - Try-runtime32 name: ${{ matrix.network }}
3333
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.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