-
Notifications
You must be signed in to change notification settings - Fork 97
56 lines (55 loc) · 1.36 KB
/
uki.yaml
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
52
53
54
55
56
name: UKI tests
on:
pull_request:
push:
branches:
- master
permissions: read-all
concurrency:
group: ci-uki-${{ github.head_ref || github.ref }}-${{ github.repository }}
cancel-in-progress: true
env:
FORCE_COLOR: 1
EARTHLY_TOKEN: ${{ secrets.EARTHLY_TOKEN }}
jobs:
test-uki:
strategy:
matrix:
include:
- flavor: ubuntu
flavor_release: 24.04
family: ubuntu
base_image: ubuntu:24.04
variant: core
- flavor: ubuntu
flavor_release: 24.04
family: ubuntu
base_image: ubuntu:24.04
variant: standard
- flavor: fedora
family: rhel
flavor_release: 40
base_image: fedora:40
variant: core
uses: ./.github/workflows/reusable-uki-test.yaml
permissions:
id-token: write # OIDC support
contents: write
security-events: write
actions: read
attestations: read
checks: read
deployments: read
discussions: read
issues: read
packages: read
pages: read
pull-requests: read
repository-projects: read
statuses: read
secrets: inherit
with:
base_image: ${{ matrix.base_image }}
family: ${{ matrix.family }}
flavor: ${{ matrix.flavor }}
flavor_release: ${{ matrix.flavor_release }}