From: Tim Duesterhus Date: Sun, 12 Apr 2026 19:27:08 +0000 (+0200) Subject: CI: Merge `aws-lc.yml` and `aws-lc-fips.yml` into `aws-lc.yml` X-Git-Tag: v3.4-dev9~63 X-Git-Url: http://git.ipfire.org/index.cgi?a=commitdiff_plain;h=5ea919fa7c40eb91a354b09c90c21cdfdae3ce5a;p=thirdparty%2Fhaproxy.git 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. --- diff --git a/.github/workflows/aws-lc-fips.yml b/.github/workflows/aws-lc-fips.yml deleted file mode 100644 index b7a5dbd3a..000000000 --- a/.github/workflows/aws-lc-fips.yml +++ /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(''))" diff --git a/.github/workflows/aws-lc.yml b/.github/workflows/aws-lc.yml index bed888b91..a73c920c8 100644 --- a/.github/workflows/aws-lc.yml +++ b/.github/workflows/aws-lc.yml @@ -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(''))"