Skip to content

Commit 60dcd7c

Browse files
[CI] Add workflow_dispatch trigger to sycl_linux_build_and_test.yml (#10581)
We need it present in the default branch for it to appear in the Github interface. Once it's there, I will be able to create another branch with changes to it and be able to test them.
1 parent d611cc0 commit 60dcd7c

File tree

1 file changed

+107
-0
lines changed

1 file changed

+107
-0
lines changed

.github/workflows/sycl_linux_build_and_test.yml

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,113 @@ on:
8989
type: string
9090
default: 3
9191

92+
workflow_dispatch:
93+
inputs:
94+
cc:
95+
type: choice
96+
options:
97+
- gcc
98+
- clang
99+
cxx:
100+
type: choice
101+
options:
102+
- g++
103+
- clang++
104+
# build_image:
105+
# type: choice
106+
# options:
107+
# - "ghcr.io/intel/llvm/ubuntu2204_build_nightly:latest"
108+
# build_ref:
109+
# type: choice
110+
# options:
111+
# - ""
112+
# build_cache_root:
113+
# description: |
114+
# Please select "/__w/llvm" if using clang/clang++.
115+
# type: choice
116+
# options:
117+
# - "/__w/"
118+
# - "/__w/llvm"
119+
# build_cache_suffix:
120+
# type: choice
121+
# options:
122+
# - "default"
123+
# build_cache_size:
124+
# type: choice
125+
# options:
126+
# - "8G"
127+
# build_configure_extra_args:
128+
# type: choice
129+
# options:
130+
# - "--hip --cuda --enable-esimd-emulator"
131+
# build_artifact_suffix:
132+
# type: choice
133+
# options:
134+
# - "default"
135+
136+
# artifact_archive_name:
137+
# type: choice
138+
# options:
139+
# - llvm_sycl.tar.zst
140+
# artifact_compress_command:
141+
# type: choice
142+
# options:
143+
# - zstd -9
144+
# artifact_decompress_command:
145+
# type: choice
146+
# options:
147+
# - zstd
148+
149+
# lts_matrix:
150+
# type: choice
151+
# options:
152+
# - "[]"
153+
# lts_aws_matrix:
154+
# type: choice
155+
# options:
156+
# - "[]"
157+
# lts_cmake_extra_args:
158+
# type: choice
159+
# options:
160+
# - ""
161+
# lts_ref:
162+
# type: choice
163+
# options:
164+
# - "intel"
165+
166+
# cts_matrix:
167+
# type: choice
168+
# options:
169+
# - "[]"
170+
# cts_cmake_extra_args:
171+
# type: choice
172+
# options:
173+
# - ""
174+
# cts_ref:
175+
# type: choice
176+
# options:
177+
# - "SYCL-2020"
178+
179+
# changes:
180+
# description: 'Filter matches for the changed files in the PR'
181+
# type: choice
182+
# options:
183+
# - "[]"
184+
# - '[llvm, clang, sycl, llvm_spirv, xptifw, libclc, libdevice]'
185+
186+
# merge_ref:
187+
# description: |
188+
# Commit-ish to merge post-checkout if non-empty. Must be reachable from
189+
# the default_branch input paramter.
190+
# type: choice
191+
# options:
192+
# - "FETCH_HEAD"
193+
194+
# retention-days:
195+
# type: choice
196+
# options:
197+
# - 3
198+
92199
jobs:
93200
build:
94201
name: Build + LIT

0 commit comments

Comments
 (0)