CI - ISOs #403
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: kde | |
- product: tau | |
variant: home | |
uses: ./.github/workflows/iso.yml | |
with: | |
product: ${{ matrix.build.product }} | |
variant: ${{ matrix.build.variant }} | |
secrets: inherit |