Summary
Jobs
Build Container
Build ISOs
Load Variables
Build ISO (39, false, ghcr.io/ublue-os, base-main)
Build ISO (39, flatpak_refs_dir, ghcr.io/ublue-os, base-main)
Build ISO (39, flatpak_refs, ghcr.io/ublue-os, base-main)
Build ISO (40, false, ghcr.io/ublue-os, base-main)
Build ISO (40, flatpak_refs_dir, ghcr.io/ublue-os, base-main)
Build ISO (40, flatpak_refs, ghcr.io/ublue-os, base-main)
Build ISO (41, false, ghcr.io/ublue-os, base-main)
Build ISO (41, flatpak_refs_dir, ghcr.io/ublue-os, base-main)
Build ISO (41, flatpak_refs, ghcr.io/ublue-os, base-main)
Test ISOs
Load Variables
Test ISO (39, false, ghcr.io/ublue-os, base-main)
Test ISO (39, flatpak_refs_dir, ghcr.io/ublue-os, base-main)
Test ISO (39, flatpak_refs, ghcr.io/ublue-os, base-main)
Test ISO (40, false, ghcr.io/ublue-os, base-main)
Test ISO (40, flatpak_refs_dir, ghcr.io/ublue-os, base-main)
Test ISO (40, flatpak_refs, ghcr.io/ublue-os, base-main)
Test ISO (41, false, ghcr.io/ublue-os, base-main)
Test ISO (41, flatpak_refs_dir, ghcr.io/ublue-os, base-main)
Test ISO (41, flatpak_refs, ghcr.io/ublue-os, base-main)
Test Deployments
Load Variables
Test deployment (39, false, ghcr.io/ublue-os, base-main)
Test deployment (39, flatpak_refs_dir, ghcr.io/ublue-os, base-main)
Test deployment (39, flatpak_refs, ghcr.io/ublue-os, base-main)
Test deployment (40, false, ghcr.io/ublue-os, base-main)
Test deployment (40, flatpak_refs_dir, ghcr.io/ublue-os, base-main)
Test deployment (40, flatpak_refs, ghcr.io/ublue-os, base-main)
Test deployment (41, false, ghcr.io/ublue-os, base-main)
Test deployment (41, flatpak_refs_dir, ghcr.io/ublue-os, base-main)
Test deployment (41, flatpak_refs, ghcr.io/ublue-os, base-main)
Workflow file for this run
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: All Tests
on:
push:
branches:
- 'main'
tags:
- 'v*'
workflow_dispatch:
workflow_call:
inputs:
pr:
required: true
type: string
parent_job_name:
required: true
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build_container:
name: Build Container
uses: ./.github/workflows/build_container.yml
secrets: inherit
with:
pr: ${{ inputs.pr }}
parent_job_name: ${{ inputs.parent_job_name && format('{0} / ', inputs.parent_job_name) }}Build Container
build_isos:
name: Build ISOs
needs:
- build_container
uses: ./.github/workflows/build_iso.yml
with:
pr: ${{ inputs.pr }}
parent_job_name: ${{ inputs.parent_job_name && format('{0} / ', inputs.parent_job_name) }}Build ISOs
test_isos:
name: Test ISOs
needs:
- build_isos
uses: ./.github/workflows/test_iso.yml
with:
pr: ${{ inputs.pr }}
parent_job_name: ${{ inputs.parent_job_name && format('{0} / ', inputs.parent_job_name) }}Test ISOs
test_deployments:
name: Test Deployments
needs:
- build_isos
uses: ./.github/workflows/test_deployment.yml
with:
pr: ${{ inputs.pr }}
parent_job_name: ${{ inputs.parent_job_name && format('{0} / ', inputs.parent_job_name) }}Test Deployments
You can’t perform that action at this time.