TheRock Multi-Arch CI Nightly Trigger #50
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
| # Copyright Advanced Micro Devices, Inc. | |
| # SPDX-License-Identifier: MIT | |
| # Nightly trigger for Multi-Arch CI | |
| # | |
| # This workflow triggers therock-multi-arch-ci.yml via workflow_dispatch | |
| # with specific GPU families. This is needed because TheRock's setup_multi_arch | |
| # workflow runs all families when triggered by schedule, ignoring inputs. | |
| # By using workflow_dispatch, TheRock respects our specified families. | |
| name: TheRock Multi-Arch CI Nightly Trigger | |
| on: | |
| schedule: | |
| - cron: "0 7 * * *" # Runs nightly at 7 AM UTC | |
| permissions: | |
| actions: write | |
| contents: read | |
| jobs: | |
| multi-arch-ci-nightly-trigger: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger Multi-Arch CI with specific GPU families | |
| uses: benc-uk/workflow-dispatch@31e2b3319479a63f0ab15bf800eff9e913504e26 # v1.3.2 | |
| with: | |
| workflow: therock-multi-arch-ci.yml | |
| ref: develop | |
| inputs: '{ "linux_amdgpu_families": "gfx94X,gfx950", "windows_amdgpu_families": "gfx1151" }' |