Skip to content

All Tests

All Tests #267

Workflow file for this run

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

Check failure on line 39 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / All Tests

Invalid workflow file

The workflow is not valid. In .github/workflows/tests.yml (Line: 39, Col: 11): Error from called workflow JasonN3/build-container-installer/.github/workflows/build_iso.yml@e4303ef494d1dbb61aac449d4951b100133f7965 (Line: 56, Col: 21): Unrecognized named-value: 'image_name'. Located at position 1 within expression: image_name In .github/workflows/tests.yml (Line: 39, Col: 11): Error from called workflow JasonN3/build-container-installer/.github/workflows/build_iso.yml@e4303ef494d1dbb61aac449d4951b100133f7965 (Line: 65, Col: 20): Unrecognized named-value: 'image_name'. Located at position 1 within expression: image_name
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