Skip to content

Commit 0d9d733

Browse files
authored
GH workflow cleanup (#447)
1 parent 6f3885f commit 0d9d733

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

.github/workflows/analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches:
1010
- '*'
1111
concurrency:
12-
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
12+
group: ${{ github.workflow }}-${{ github.ref_name }}
1313
cancel-in-progress: true
1414

1515
env:

.github/workflows/cross.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches:
1010
- '*'
1111
concurrency:
12-
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
12+
group: ${{ github.workflow }}-${{ github.ref_name }}
1313
cancel-in-progress: true
1414

1515
env:

.github/workflows/fips.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches:
1010
- '*'
1111
concurrency:
12-
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
12+
group: ${{ github.workflow }}-${{ github.ref_name }}
1313
cancel-in-progress: true
1414

1515
env:

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches:
1010
- '*'
1111
concurrency:
12-
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
12+
group: ${{ github.workflow }}-${{ github.ref_name }}
1313
cancel-in-progress: true
1414

1515
env:

.github/workflows/pregen-bindings.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,24 @@
11
name: Pregeneration Test
2+
23
on:
34
push:
4-
branches: [ '*' ]
5+
branches:
6+
- '*'
7+
- '!generate/aws-lc-*'
58
pull_request:
6-
branches: [ '*' ]
9+
branches:
10+
- '*'
711
concurrency:
812
group: ${{ github.workflow }}-${{ github.ref_name }}
913
cancel-in-progress: true
14+
1015
env:
16+
RUST_BACKTRACE: 1
17+
# We can pin the version if nightly is too unstable.
18+
# Otherwise, we test against the latest version.
19+
RUST_NIGHTLY_TOOLCHAIN: nightly-2024-05-22
1120
GOPROXY: https://proxy.golang.org,direct
1221
AWS_LC_SYS_CMAKE_BUILDER: 1
13-
RUST_NIGHTLY_TOOLCHAIN: nightly-2024-05-22
1422
jobs:
1523
bindings:
1624
if: github.repository_owner == 'aws'

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches:
1010
- '*'
1111
concurrency:
12-
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
12+
group: ${{ github.workflow }}-${{ github.ref_name }}
1313
cancel-in-progress: true
1414

1515
env:

0 commit comments

Comments
 (0)