-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (48 loc) · 1.29 KB
/
build.yml
File metadata and controls
51 lines (48 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Build
on:
push:
branches: [main]
pull_request:
schedule:
- cron: "32 0 * * *"
permissions:
contents: read
packages: write
attestations: write
id-token: write
pull-requests: write
jobs:
debian-fips:
name: debian-fips
uses: ./.github/workflows/_reusable-docker-build.yml
secrets: inherit
with:
target_name: debian-fips
image_suffix: "${{ github.event_name == 'pull_request' && github.event.number || '' }}"
xmlsec1-fips:
needs:
- debian-fips
name: xmlsec1-fips
uses: ./.github/workflows/_reusable-docker-build.yml
secrets: inherit
with:
target_name: xmlsec1-fips
image_suffix: "${{ github.event_name == 'pull_request' && github.event.number || '' }}"
python-fips:
needs:
- xmlsec1-fips
strategy:
fail-fast: false
matrix:
version:
- "3.12.12" # renovate: python
- "3.13.9" # renovate: python
- "3.14.3" # renovate: python
- "3.15.0a2" # renovate: python
name: python-fips
uses: ./.github/workflows/_reusable-docker-build.yml
secrets: inherit
with:
target_name: python-fips
image_suffix: "${{ github.event_name == 'pull_request' && github.event.number || '' }}"
variables: PYTHON_VERSION=${{ matrix.version }}