Skip to content

(T3K) Choose your pipeline #88

(T3K) Choose your pipeline

(T3K) Choose your pipeline #88

name: "(T3K) Choose your pipeline"
on:
workflow_dispatch:
inputs:
build-type:
required: false
type: choice
options:
- Release
- Debug
- RelWithDebInfo
- CI
default: "Release"
build-with-tracy:
required: false
type: boolean
default: false
t3000-unit:
required: false
type: boolean
default: false
t3000-demo:
required: false
type: boolean
default: false
t3000-frequent:
required: false
type: boolean
default: false
t3000-nightly:
required: false
type: boolean
default: false
t3000-model-perf:
required: false
type: boolean
default: false
t3000-profiler:
description: "T3000 profiler tests (requires tracy build)"
required: false
type: boolean
default: false
run-name: ${{ inputs.description }}
jobs:
build-artifact:
uses: ./.github/workflows/build-artifact.yaml
with:
build-type: ${{ inputs.build-type }}
tracy: ${{ inputs.build-with-tracy }}
secrets: inherit
t3000-unit-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/t3000-unit-tests-impl.yaml
if: ${{ inputs.t3000-unit }}
t3000-demo-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/t3000-demo-tests-impl.yaml
if: ${{ inputs.t3000-demo }}
t3000-frequent-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/t3000-frequent-tests-impl.yaml
if: ${{ inputs.t3000-frequent }}
t3000-nightly-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/t3000-nightly-tests-impl.yaml
if: ${{ inputs.t3000-nightly }}
t3000-model-perf-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/t3000-model-perf-tests-impl.yaml
if: ${{ inputs.t3000-model-perf }}
t3000-profiler-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/t3000-profiler-tests-impl.yaml

Check failure on line 81 in .github/workflows/pipeline-select-t3k.yaml

View workflow run for this annotation

GitHub Actions / (T3K) Choose your pipeline

Invalid workflow file

error parsing called workflow ".github/workflows/pipeline-select-t3k.yaml" -> "./.github/workflows/t3000-profiler-tests-impl.yaml" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
if: ${{ inputs.t3000-profiler }}