Run All Demos #35
This file contains hidden or 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: Run All Demos | |
| on: | |
| workflow_dispatch: | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| # Minimal demos for quick testing | |
| demo-dbg-minimal: | |
| uses: ./.github/workflows/demo-dbg-minimal.yml | |
| secrets: inherit | |
| demo-gpu-minimal: | |
| uses: ./.github/workflows/demo-gpu-minimal.yml | |
| secrets: inherit | |
| # Sweep demos for comprehensive testing | |
| demo-cpu-sweep: | |
| uses: ./.github/workflows/demo-cpu-sweep.yml | |
| secrets: inherit | |
| demo-gpu-sweep: | |
| uses: ./.github/workflows/demo-gpu-sweep.yml | |
| secrets: inherit | |
| # Multi-instance/runner demos | |
| demo-instances-mtx: | |
| uses: ./.github/workflows/demo-instances-mtx.yml | |
| secrets: inherit | |
| demo-runners-mtx: | |
| uses: ./.github/workflows/demo-runners-mtx.yml | |
| secrets: inherit | |
| demo-jobs-split: | |
| uses: ./.github/workflows/demo-jobs-split.yml | |
| secrets: inherit |