]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: Merge `aws-lc.yml` and `aws-lc-fips.yml` into `aws-lc.yml`
authorTim Duesterhus <tim@bastelstu.be>
Sun, 12 Apr 2026 19:27:08 +0000 (21:27 +0200)
committerWilliam Lallemand <wlallemand@haproxy.com>
Mon, 13 Apr 2026 07:34:07 +0000 (09:34 +0200)
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 [deleted file]
.github/workflows/aws-lc.yml

diff --git a/.github/workflows/aws-lc-fips.yml b/.github/workflows/aws-lc-fips.yml
deleted file mode 100644 (file)
index b7a5dbd..0000000
+++ /dev/null
@@ -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(''))"
index bed888b91491f514bf5a2459fdb9288d2913f815..a73c920c8c4af978a71d88c804946fa5a4d98ca0 100644 (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(''))"