Skip to content

#0: add T3k profiler and TG/TGG model perf workflows to new pipeline … #30

#0: add T3k profiler and TG/TGG model perf workflows to new pipeline …

#0: add T3k profiler and TG/TGG model perf workflows to new pipeline … #30

name: "(Single/TG/TGG) Choose your pipeline"

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

View workflow run for this annotation

GitHub Actions / .github/workflows/pipeline-select.yaml

Invalid workflow file

you may only define up to 10 `inputs` for a `workflow_dispatch` event
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
single-card-demo:
required: false
type: boolean
default: false
single-card-perf-models:
required: false
type: boolean
default: false
single-card-perf-device-models:
description: "perf-device (requires tracy build)"
required: false
type: boolean
default: false
single-card-nightly:
required: false
type: boolean
default: false
tgg-unit:
required: false
type: boolean
default: false
tgg-frequent:
required: false
type: boolean
default: false
tgg-model-perf:
required: false
type: boolean
default: false
tg-unit:
required: false
type: boolean
default: false
tg-frequent:
required: false
type: boolean
default: false
tg-model-perf:
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
single-card-demo-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/single-card-demo-tests-impl.yaml
if: ${{ inputs.single-card-demo }}
single-card-perf-models-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/perf-models-impl.yaml
if: ${{ inputs.perf-models }}
single-card-perf-device-models-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/perf-device-models-impl.yaml
if: ${{ inputs.perf-device-models }}
single-card-nightly:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/fast-dispatch-full-regressions-and-models-impl.yaml
if: ${{ inputs.single-card-nightly }}
tgg-unit-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/tgg-unit-tests-impl.yaml
if: ${{ inputs.tgg-unit }}
tgg-frequent-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/tgg-frequent-tests-impl.yaml
if: ${{ inputs.tgg-frequent }}
tgg-model-perf-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/tgg-model-perf-tests-impl.yaml
if: ${{ inputs.tgg-model-perf }}
tg-unit-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/tg-unit-tests-impl.yaml
if: ${{ inputs.tg-unit }}
tg-frequent-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/tg-frequent-tests-impl.yaml
if: ${{ inputs.tg-frequent }}
tg-model-perf-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/tg-model-perf-tests-impl.yaml
if: ${{ inputs.tg-model-perf }}