mirror of
https://github.com/haproxy/haproxy.git
synced 2026-05-19 08:32:34 -04:00
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.
21 lines
501 B
YAML
21 lines
501 B
YAML
name: AWS-LC
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 4"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
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(''))"
|