mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
separate tests
This commit is contained in:
parent
67c9098ddc
commit
a483dc92a4
5 changed files with 227 additions and 32 deletions
44
.github/workflows/tests.yml
vendored
44
.github/workflows/tests.yml
vendored
|
|
@ -49,9 +49,6 @@ jobs:
|
|||
parent_job_name: ${{ inputs.parent_job_name && format('{0} / ', inputs.parent_job_name) }}Build ISO with Flatpaks
|
||||
flatpaks_refs_dir: flatpak_refs
|
||||
suffix: flatpaks
|
||||
secrets:
|
||||
RH_REPO: ${{ secrets.RH_REPO }}
|
||||
RH_ENT: ${{ secrets.RH_ENT }}
|
||||
|
||||
test_iso_flatpaks:
|
||||
name: Test ISO with Flatpaks
|
||||
|
|
@ -85,9 +82,6 @@ jobs:
|
|||
parent_job_name: ${{ inputs.parent_job_name && format('{0} / ', inputs.parent_job_name) }}Build ISO with Flatpak Refs
|
||||
flatpaks_refs: "app/org.mozilla.firefox/x86_64/stable app/org.videolan.VLC/x86_64/stable"
|
||||
suffix: flatpaks_refs
|
||||
secrets:
|
||||
RH_REPO: ${{ secrets.RH_REPO }}
|
||||
RH_ENT: ${{ secrets.RH_ENT }}
|
||||
|
||||
test_iso_flatpak_refs:
|
||||
name: Test ISO with Flatpak Refs
|
||||
|
|
@ -119,9 +113,6 @@ jobs:
|
|||
with:
|
||||
pr: ${{ inputs.pr }}
|
||||
parent_job_name: ${{ inputs.parent_job_name && format('{0} / ', inputs.parent_job_name) }}Build ISO
|
||||
secrets:
|
||||
RH_REPO: ${{ secrets.RH_REPO }}
|
||||
RH_ENT: ${{ secrets.RH_ENT }}
|
||||
|
||||
test_iso:
|
||||
name: Test ISO
|
||||
|
|
@ -139,4 +130,37 @@ jobs:
|
|||
uses: ./.github/workflows/test_deployment.yml
|
||||
with:
|
||||
pr: ${{ inputs.pr }}
|
||||
parent_job_name: ${{ inputs.parent_job_name && format('{0} / ', inputs.parent_job_name) }}Test Deployment
|
||||
parent_job_name: ${{ inputs.parent_job_name && format('{0} / ', inputs.parent_job_name) }}Test Deployment
|
||||
|
||||
build_iso_rhel:
|
||||
name: Build RHEL ISO
|
||||
needs:
|
||||
- build_container
|
||||
uses: ./.github/workflows/build_iso_rhel.yml
|
||||
with:
|
||||
pr: ${{ inputs.pr }}
|
||||
parent_job_name: ${{ inputs.parent_job_name && format('{0} / ', inputs.parent_job_name) }}Build ISO
|
||||
suffix: rhel
|
||||
secrets:
|
||||
RH_REPO: ${{ secrets.RH_REPO }}
|
||||
RH_ENT: ${{ secrets.RH_ENT }}
|
||||
|
||||
test_iso_rhel:
|
||||
name: Test RHEL ISO
|
||||
needs:
|
||||
- build_iso
|
||||
uses: ./.github/workflows/test_iso.yml
|
||||
with:
|
||||
pr: ${{ inputs.pr }}
|
||||
parent_job_name: ${{ inputs.parent_job_name && format('{0} / ', inputs.parent_job_name) }}Test ISO
|
||||
suffix: rhel
|
||||
|
||||
test_deployment_rhel:
|
||||
name: Test RHEL Deployment
|
||||
needs:
|
||||
- build_iso
|
||||
uses: ./.github/workflows/test_deployment.yml
|
||||
with:
|
||||
pr: ${{ inputs.pr }}
|
||||
parent_job_name: ${{ inputs.parent_job_name && format('{0} / ', inputs.parent_job_name) }}Test Deployment
|
||||
suffix: rhel
|
||||
Loading…
Add table
Add a link
Reference in a new issue