Skip to content

Commit f38cfe0

Browse files
[FIX] Initial Tuning of over limited concurancy settings
Changes in file .github/workflows/CI-BUILD.yml: * Removed limits reverting to previous LGV Changes in file .github/workflows/CI-CHGLOG.yml: * Removed limits reverting to previous LGV Changes in file .github/workflows/CI-DOCS.yml: * Removed limits reverting to previous LGV Changes in file .github/workflows/CI-MATs.yml: * Removed limits reverting to previous LGV Changes in file .github/workflows/Tests.yml: * Removed limits (kept throttling) Changes in file .github/workflows/bandit.yml: * Removed limits reverting to previous LGV Changes in file .github/workflows/codeql-analysis.yml: * Retuned limit for schedule runs Changes in file .github/workflows/flake8.yml: * Removed limits reverting to previous LGV Changes in file .github/workflows/makefile-lint.yml: * Removed limits reverting to previous LGV Changes in file .github/workflows/markdown-lint.yml: * Removed limits reverting to previous LGV Changes in file .github/workflows/scorecard.yml: * Retuned limit for schedule runs Changes in file .github/workflows/shellcheck.yml: * Removed limits reverting to previous LGV
1 parent d7cbf18 commit f38cfe0

File tree

12 files changed

+3
-55
lines changed

12 files changed

+3
-55
lines changed

.github/workflows/CI-BUILD.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ on: # yamllint disable-line rule:truthy
1515
branches: ["**"] # matches any branch
1616
tags: ["v*"]
1717

18-
concurrency:
19-
group: Multicast-Builds
20-
cancel-in-progress: true
21-
2218
# Declare default permissions as none.
2319
permissions: {}
2420

.github/workflows/CI-CHGLOG.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ on: # yamllint disable-line rule:truthy
2121
types:
2222
- completed
2323

24-
concurrency:
25-
group: Multicast-Tests-Extras
26-
cancel-in-progress: false
27-
2824
# Declare default permissions as none.
2925
permissions: {}
3026

.github/workflows/CI-DOCS.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ run-name: Generate and lint documentation for ${{ github.ref_name }} by @${{ git
99
# Required Secrets:
1010
# - DOCS_BUILD_REF: Automatic
1111

12-
concurrency:
13-
group: Multicast-Documentation
14-
cancel-in-progress: false
15-
1612
# Declare default permissions as none.
1713
permissions: {}
1814

.github/workflows/CI-MATs.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ on: # yamllint disable-line rule:truthy
2525
types:
2626
- completed
2727

28-
concurrency:
29-
group: Multicast-M-A-Ts
30-
cancel-in-progress: false
31-
3228
# Declare default permissions as none.
3329
permissions: {}
3430

.github/workflows/Tests.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ on:
2222
types:
2323
- completed
2424

25-
concurrency:
26-
group: Multicast-Tests
27-
cancel-in-progress: false
28-
2925
# Declare default permissions as none.
3026
permissions: {}
3127

@@ -151,9 +147,6 @@ jobs:
151147
if: ${{ !cancelled() && (needs.check_mats.outputs.should_run == 'true') }}
152148
needs: [check_mats]
153149
runs-on: ${{ matrix.os }}
154-
concurrency:
155-
group: Multicast-Tests-Coverage
156-
cancel-in-progress: false
157150
timeout-minutes: 10
158151
strategy:
159152
max-parallel: 3
@@ -422,9 +415,6 @@ jobs:
422415
if: ${{ !cancelled() && (needs.check_mats.outputs.should_run == 'true') }}
423416
needs: [check_mats]
424417
runs-on: ${{ matrix.os }}
425-
concurrency:
426-
group: Multicast-Tests-Doctests
427-
cancel-in-progress: false
428418
timeout-minutes: 10
429419
strategy:
430420
max-parallel: 3
@@ -821,9 +811,6 @@ jobs:
821811
if: ${{ success() }}
822812
needs: [check_mats, COVERAGE, DOCTESTS]
823813
runs-on: ${{ matrix.os }}
824-
concurrency:
825-
group: Multicast-Tests-Integration
826-
cancel-in-progress: false
827814
timeout-minutes: 10
828815
strategy:
829816
max-parallel: 4
@@ -1313,9 +1300,6 @@ jobs:
13131300
defaults:
13141301
run:
13151302
shell: bash
1316-
concurrency:
1317-
group: Multicast-Tests-Extras
1318-
cancel-in-progress: false
13191303
timeout-minutes: 5
13201304
strategy:
13211305
max-parallel: 1

.github/workflows/bandit.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ on: # yamllint disable-line rule:truthy
1818
# The branches below must be a subset of the branches above
1919
branches: ["main", "master", "stable", "feature-*", "patch-*", "HOTFIX-*"]
2020

21-
concurrency:
22-
group: Multicast-CodeQL
23-
cancel-in-progress: false
24-
2521
permissions: {}
2622

2723
jobs:

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on: # yamllint disable-line rule:truthy
2222

2323
concurrency:
2424
group: Multicast-CodeQL
25-
cancel-in-progress: false
25+
cancel-in-progress: true
2626

2727
permissions: {}
2828

.github/workflows/flake8.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
name: Flake8 Analysis
33
on: [push, pull_request]
44

5-
concurrency:
6-
group: Multicast-CodeQL
7-
cancel-in-progress: false
8-
95
permissions: {} # Setting default permissions to none for enhanced security
106

117
jobs:

.github/workflows/makefile-lint.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ on: # yamllint disable-line rule:truthy
2222
pull_request:
2323
branches: ["main", "master", "stable", "feature-*", "patch-*", "HOTFIX-*"]
2424

25-
concurrency:
26-
group: Multicast-Lint
27-
cancel-in-progress: false
28-
2925
permissions: {} # Setting default permissions to none for enhanced security
3026

3127
jobs:

.github/workflows/markdown-lint.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ on: # yamllint disable-line rule:truthy
77
pull_request:
88
branches: ["main", "master", "stable", "feature-*", "patch-*", "HOTFIX-*"]
99

10-
concurrency:
11-
group: Multicast-Lint
12-
cancel-in-progress: false
13-
1410
permissions: {} # Setting default permissions to none for enhanced security
1511

1612
jobs:

0 commit comments

Comments
 (0)