(Single-card) Tests for new models #308
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: "(Single-card) Tests for new models" | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
build-type: | ||
required: false | ||
default: Release | ||
type: choice | ||
options: | ||
- Release | ||
- Debug | ||
- RelWithDebInfo | ||
- CI | ||
schedule: | ||
- cron: "0 2,11 * * *" | ||
permissions: | ||
actions: read | ||
contents: write | ||
pull-requests: write | ||
pages: write | ||
id-token: write | ||
packages: write | ||
jobs: | ||
build-artifact: | ||
uses: ./.github/workflows/build-artifact.yaml | ||
secrets: inherit | ||
with: | ||
build-type: ${{ inputs.build-type || 'Release' }} | ||
build-artifact-profiler: | ||
uses: ./.github/workflows/build-artifact.yaml | ||
with: | ||
tracy: true | ||
build-type: ${{ inputs.build-type || 'Release' }} | ||
secrets: inherit | ||
device-perf-single-card: | ||
needs: build-artifact-profiler | ||
uses: ./.github/workflows/perf-device-models-impl.yaml | ||
secrets: inherit | ||
with: | ||
docker-image: ${{ needs.build-artifact-profiler.outputs.ci-build-docker-image }} | ||
build-artifact-name: ${{ needs.build-artifact-profiler.outputs.build-artifact-name }} | ||
wheel-artifact-name: ${{ needs.build-artifact-profiler.outputs.wheel-artifact-name }} | ||
e2e-model-perf-single-card: | ||
needs: build-artifact | ||
uses: ./.github/workflows/perf-models-impl.yaml | ||
secrets: inherit | ||
nightly-single-card: | ||
needs: build-artifact | ||
uses: ./.github/workflows/fast-dispatch-full-regressions-and-models-impl.yaml | ||
secrets: inherit | ||
demos-single-card: | ||
needs: build-artifact | ||
uses: ./.github/workflows/single-card-demo-tests-impl.yaml | ||
Check failure on line 56 in .github/workflows/full-new-models-suite.yaml
|
||
secrets: inherit |