Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use a matrix #16

Merged
merged 3 commits into from
Dec 12, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 7 additions & 11 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,23 @@ jobs:
path: |
versions_generic.old.yaml
versions_fips.old.yaml
build-generic:
build:
permissions:
id-token: write # OIDC support
contents: write
uses: ./.github/workflows/reusable-build.yaml
secrets: inherit
with:
security_profile: generic
build-fips:
permissions:
id-token: write # OIDC support
contents: write
strategy:
fail-fast: false
matrix:
security_profile: [generic, fips]
uses: ./.github/workflows/reusable-build.yaml
secrets: inherit
with:
security_profile: fips
security_profile: ${{ matrix.security_profile }}}
mauromorales marked this conversation as resolved.
Show resolved Hide resolved
comment-pr:
runs-on: ubuntu-latest
permissions:
pull-requests: write
needs: [build-generic, build-fips, get-old-versions]
needs: [build, get-old-versions]
steps:
- uses: actions/checkout@v4
- name: Download versions
Expand Down
Loading