forked from ublue-os/aurora
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 1.01 KB
/
Copy pathbuild-image-testing.yml
File metadata and controls
40 lines (38 loc) · 1.01 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
name: Testing Images
on:
merge_group:
pull_request:
branches:
- main
paths-ignore:
- "**.md"
- ".github/workflows/moderator.yml"
- ".github/workflows/scorecard.yml"
workflow_call:
workflow_dispatch:
permissions: {}
jobs:
build-image-testing:
name: Build Testing Images
uses: ./.github/workflows/reusable-build.yml
permissions:
contents: read
packages: write
id-token: write
attestations: write
artifact-metadata: write
secrets:
SIGNING_SECRET: ${{ secrets.SIGNING_SECRET }}
strategy:
fail-fast: false
matrix:
brand_name: ["aurora"]
with:
image_flavors: '["main", "nvidia-open"]'
brand_name: ${{ matrix.brand_name }}
stream_name: testing
# FIXME: MAIN has no arm builds in ublue-os/akmods yet
# https://github.com/ublue-os/akmods/pull/440
# architecture: '["aarch64","x86_64"]'
architecture: '["x86_64"]'
publish: ${{ github.event_name != 'pull_request' }}