Skip to content

python-fips-full: re-enable arm64 #23

python-fips-full: re-enable arm64

python-fips-full: re-enable arm64 #23

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
packages: write
jobs:
debian-fips:
name: debian-fips
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-target
with:
target: debian-fips
container_token: ${{ secrets.GITHUB_TOKEN }}
xmlsec1-fips:
needs:
- debian-fips
name: xmlsec1-fips
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-target
with:
target: xmlsec1-fips
container_token: ${{ secrets.GITHUB_TOKEN }}
python-fips:
needs:
- xmlsec1-fips
name: python-fips
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-target
with:
target: python-fips
container_token: ${{ secrets.GITHUB_TOKEN }}
python-fips-full:
needs:
- python-fips
name: python-fips-full
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-target
with:
target: python-fips-full
container_token: ${{ secrets.GITHUB_TOKEN }}