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.
---
.github/workflows/aws-lc-fips.yml | 12 ------------
.github/workflows/aws-lc.yml | 8 +++++++-
2 files changed, 7 insertions(+), 13 deletions(-)
delete mode 100644 .github/workflows/aws-lc-fips.yml
diff --git a/.github/workflows/aws-lc-fips.yml
b/.github/workflows/aws-lc-fips.yml
deleted file mode 100644
index cb758c6a3..000000000
--- a/.github/workflows/aws-lc-fips.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-name: AWS-LC-FIPS
-
-on:
- schedule:
- - cron: "0 0 * * 4"
- workflow_dispatch:
-
-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(''))"
diff --git a/.github/workflows/aws-lc.yml b/.github/workflows/aws-lc.yml
index 1e4125712..594c702fc 100644
--- a/.github/workflows/aws-lc.yml
+++ b/.github/workflows/aws-lc.yml
@@ -6,7 +6,13 @@ on:
workflow_dispatch:
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(''))"
--
2.53.0