forked from ROCm/rocm-libraries
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththerock-multi-arch-ci-nightly.yml
More file actions
30 lines (25 loc) · 987 Bytes
/
Copy paththerock-multi-arch-ci-nightly.yml
File metadata and controls
30 lines (25 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 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" }'