File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 schedule :
1212 - cron : ' 0 20 * * *'
1313
14+ #
15+ # Cancel any in-flight or queued run of this workflow on the same branch
16+ # when a new commit lands, so only the newest commit gets tested. head_ref
17+ # names the source branch on pull_request events and ref_name covers push
18+ # events, so keying on either rather than on github.ref stops a branch with
19+ # an open pull request from running two full sets of jobs.
20+ #
21+ concurrency :
22+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
23+ cancel-in-progress : true
24+
1425env :
1526 DEBIAN_FRONTEND : noninteractive
1627
Original file line number Diff line number Diff line change 99 - debug-fuzzer-**
1010 pull_request :
1111
12+ #
13+ # Cancel any in-flight or queued run of this workflow on the same branch
14+ # when a new commit lands, so only the newest commit gets tested. head_ref
15+ # names the source branch on pull_request events and ref_name covers push
16+ # events, so keying on either rather than on github.ref stops a branch with
17+ # an open pull request from running two full sets of jobs.
18+ #
19+ concurrency :
20+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
21+ cancel-in-progress : true
22+
1223env :
1324 HOSTAPD_BUILD_DIR : eapol_test.ci
1425 HOSTAPD_GIT_TAG : hostap_2_11
Original file line number Diff line number Diff line change 1010 pull_request :
1111
1212#
13- # Cancel any in-flight or queued run of this workflow on the same
14- # ref when a new commit lands. Replaces fkirc/skip-duplicate-actions
15- # for the "don't waste CI on a stale push" use case.
13+ # Cancel any in-flight or queued run of this workflow on the same branch
14+ # when a new commit lands, so only the newest commit gets tested. head_ref
15+ # names the source branch on pull_request events and ref_name covers push
16+ # events, so keying on either rather than on github.ref stops a branch with
17+ # an open pull request from running two full sets of jobs.
1618#
1719concurrency :
18- group : ${{ github.workflow }}-${{ github.ref }}
20+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
1921 cancel-in-progress : true
2022
2123env :
Original file line number Diff line number Diff line change 3131 # Daily at 2pm EST (7pm UTC) - full test set, not just CI subset.
3232 - cron : ' 0 19 * * *'
3333
34+ #
35+ # Cancel any in-flight or queued run of this workflow on the same branch
36+ # when a new commit lands, so only the newest commit gets tested. head_ref
37+ # names the source branch on pull_request events and ref_name covers push
38+ # events, so keying on either rather than on github.ref stops a branch with
39+ # an open pull request from running two full sets of jobs.
40+ #
41+ concurrency :
42+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
43+ cancel-in-progress : true
44+
3445jobs :
3546 multi-server-tests :
3647 runs-on : self-hosted
Original file line number Diff line number Diff line change 1111 schedule :
1212 - cron : ' 0 20 * * *'
1313
14+ #
15+ # Cancel any in-flight or queued run of this workflow on the same branch
16+ # when a new commit lands, so only the newest commit gets tested. head_ref
17+ # names the source branch on pull_request events and ref_name covers push
18+ # events, so keying on either rather than on github.ref stops a branch with
19+ # an open pull request from running two full sets of jobs.
20+ #
21+ concurrency :
22+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
23+ cancel-in-progress : true
24+
1425jobs :
1526
1627 #
Original file line number Diff line number Diff line change 1010 pull_request :
1111
1212#
13- # Cancel any in-flight or queued run of this workflow on the same
14- # ref when a new commit lands. Replaces fkirc/skip-duplicate-actions
15- # for the "don't waste CI on a stale push" use case.
13+ # Cancel any in-flight or queued run of this workflow on the same branch
14+ # when a new commit lands, so only the newest commit gets tested. head_ref
15+ # names the source branch on pull_request events and ref_name covers push
16+ # events, so keying on either rather than on github.ref stops a branch with
17+ # an open pull request from running two full sets of jobs.
1618#
1719concurrency :
18- group : ${{ github.workflow }}-${{ github.ref }}
20+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
1921 cancel-in-progress : true
2022
2123env :
Original file line number Diff line number Diff line change 1010 pull_request :
1111
1212#
13- # Cancel any in-flight or queued run of this workflow on the same
14- # ref when a new commit lands. Replaces fkirc/skip-duplicate-actions
15- # for the "don't waste CI on a stale push" use case.
13+ # Cancel any in-flight or queued run of this workflow on the same branch
14+ # when a new commit lands, so only the newest commit gets tested. head_ref
15+ # names the source branch on pull_request events and ref_name covers push
16+ # events, so keying on either rather than on github.ref stops a branch with
17+ # an open pull request from running two full sets of jobs.
1618#
1719concurrency :
18- group : ${{ github.workflow }}-${{ github.ref }}
20+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
1921 cancel-in-progress : true
2022
2123env :
Original file line number Diff line number Diff line change 66 - coverity_scan
77 workflow_dispatch :
88
9+ #
10+ # Cancel any in-flight or queued run of this workflow on the same branch
11+ # when a new commit lands, so only the newest commit gets tested. head_ref
12+ # names the source branch on pull_request events and ref_name covers push
13+ # events, so keying on either rather than on github.ref stops a branch with
14+ # an open pull request from running two full sets of jobs.
15+ #
16+ concurrency :
17+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
18+ cancel-in-progress : true
19+
920env :
1021 CI : 1
1122 GH_ACTIONS : 1
Original file line number Diff line number Diff line change 66 - coverity_scan
77 workflow_dispatch :
88
9+ #
10+ # Cancel any in-flight or queued run of this workflow on the same branch
11+ # when a new commit lands, so only the newest commit gets tested. head_ref
12+ # names the source branch on pull_request events and ref_name covers push
13+ # events, so keying on either rather than on github.ref stops a branch with
14+ # an open pull request from running two full sets of jobs.
15+ #
16+ concurrency :
17+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
18+ cancel-in-progress : true
19+
920env :
1021 CI : 1
1122 GH_ACTIONS : 1
Original file line number Diff line number Diff line change 2323 schedule :
2424 - cron : ' 1 20 * * *'
2525
26+ #
27+ # Cancel any in-flight or queued run of this workflow on the same branch
28+ # when a new commit lands, so only the newest commit gets tested. head_ref
29+ # names the source branch on pull_request events and ref_name covers push
30+ # events, so keying on either rather than on github.ref stops a branch with
31+ # an open pull request from running two full sets of jobs.
32+ #
33+ concurrency :
34+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
35+ cancel-in-progress : true
36+
2637jobs :
2738 build-docs :
2839 if : github.repository_owner == 'FreeRADIUS'
You can’t perform that action at this time.
0 commit comments