mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-13 04:46:15 -04:00
CI: Merge aws-lc.yml and aws-lc-fips.yml into aws-lc.yml
These two jobs run on exactly the same triggers and are effectively variations of each other. There is no need to have two separate workflows for them.
This commit is contained in:
parent
86430ab5a4
commit
5ea919fa7c
2 changed files with 7 additions and 16 deletions
15
.github/workflows/aws-lc-fips.yml
vendored
15
.github/workflows/aws-lc-fips.yml
vendored
|
|
@ -1,15 +0,0 @@
|
|||
name: AWS-LC-FIPS
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * 4"
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
test:
|
||||
uses: ./.github/workflows/aws-lc-template.yml
|
||||
with:
|
||||
command: "from matrix import determine_latest_aws_lc_fips; print(determine_latest_aws_lc_fips(''))"
|
||||
8
.github/workflows/aws-lc.yml
vendored
8
.github/workflows/aws-lc.yml
vendored
|
|
@ -9,7 +9,13 @@ permissions:
|
|||
contents: read
|
||||
|
||||
jobs:
|
||||
test:
|
||||
aws-lc:
|
||||
name: AWS-LC
|
||||
uses: ./.github/workflows/aws-lc-template.yml
|
||||
with:
|
||||
command: "from matrix import determine_latest_aws_lc; print(determine_latest_aws_lc(''))"
|
||||
aws-lc-fips:
|
||||
name: AWS-LC (FIPS)
|
||||
uses: ./.github/workflows/aws-lc-template.yml
|
||||
with:
|
||||
command: "from matrix import determine_latest_aws_lc_fips; print(determine_latest_aws_lc_fips(''))"
|
||||
|
|
|
|||
Loading…
Reference in a new issue