Skip to content

Commit b2d4463

Browse files
committed
Test commit to learn more about the workflow
1 parent 24b5169 commit b2d4463

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

.github/workflows/sycl-linux-run-tests.yml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,21 @@ on:
114114
- cts
115115
- benchmark
116116

117+
sycl_toolchain_artifact:
118+
description: |
119+
If benchmarking, this artifact is what would be used in benchmarking.
120+
type: string
121+
default: ''
122+
required: False
123+
sycl_toolchain_archive:
124+
type: string
125+
default: ''
126+
required: False
127+
sycl_toolchain_decompress_command:
128+
type: string
129+
default: ''
130+
required: False
131+
117132
env:
118133
description: |
119134
Suggested variables: for E2E tests - LIT_FILTER, LIT_FILTER_OUT.
@@ -255,7 +270,7 @@ jobs:
255270
echo LD_LIBRARY_PATH=$PWD/toolchain/lib/:$LD_LIBRARY_PATH >> $GITHUB_ENV
256271
- run: which clang++ sycl-ls
257272
- run: sycl-ls --verbose
258-
- run: SYCL_UR_TRACE=-1 sycl-ls
273+
- run: SYCL_UR_TRACE=1 sycl-ls
259274
- run: |
260275
if [ -f /usr/local/lib/igc/IGCTAG.txt ]; then
261276
cat /usr/local/lib/igc/IGCTAG.txt
@@ -367,7 +382,12 @@ jobs:
367382
- name: Run compute-benchmarks
368383
id: run_benchmarks
369384
if: inputs.tests_selector == 'benchmark'
370-
run: ./devops/scripts/benchmarking/benchmark.sh
385+
run: |
386+
whereis clang++
387+
whereis sycl-ls
388+
clang++ --version
389+
ls
390+
./devops/scripts/benchmarking/benchmark.sh
371391
# - name: Upload sycl-bench microbenchmark results
372392
# if: inputs.tests_selector == 'benchmark' && steps.run_benchmarks.outcome == 'success'
373393
# uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)