-
Notifications
You must be signed in to change notification settings - Fork 3
40 lines (38 loc) · 1.02 KB
/
ci-isos.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
name: CI - ISOs
on:
workflow_dispatch:
workflow_run:
# Only run the ISO workflow when the OSTree workflow is done, so we can use the latest OSTree :3
workflows: ["CI - OSTree"]
types:
- completed
# schedule:
# # every week at midnight
# - cron: "0 0 * * *"
jobs:
ci:
concurrency:
group: ${{ github.workflow }}-${{ matrix.build.product }}-${{ matrix.build.variant }}
cancel-in-progress: false
strategy:
max-parallel: 2
fail-fast: false
matrix:
build:
- product: ultramarine
variant: base
- product: ultramarine
variant: flagship
- product: ultramarine
variant: gnome
- product: ultramarine
variant: pantheon
- product: ultramarine
variant: kde
- product: tau
variant: home
uses: ./.github/workflows/iso.yml
with:
product: ${{ matrix.build.product }}
variant: ${{ matrix.build.variant }}
secrets: inherit