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:
Tim Duesterhus 2026-04-12 21:27:08 +02:00 committed by William Lallemand
parent 86430ab5a4
commit 5ea919fa7c
2 changed files with 7 additions and 16 deletions

View file

@ -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(''))"

View file

@ -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(''))"