Skip to content

Commit 1311d17

Browse files
remove RUN_OPTS; dowload all artefacts
1 parent b1eaf54 commit 1311d17

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.github/actions/do_build_sycl_cts/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
description: '"ock" or "native_cpu"'
99
default: 'ock'
1010
download_sycl_cts_artefact:
11-
description: 'download ock artefact rather than building, of form <target>=id;<target2=id2>.'
11+
description: 'download sycl_cts artefact rather than building, of form <target>=id;<target2=id2>.'
1212
default: ''
1313

1414
runs:

.github/actions/run_sycl_cts/action.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,10 @@ runs:
6161
SYCL_CTS_FILTER: ''
6262
run: |
6363
echo running sycl cts
64-
export RUN_OPTS=""
6564
export LD_LIBRARY_PATH=$GITHUB_WORKSPACE/install_dpcpp/lib
6665
if [[ "${{inputs.sycl_device}}" = "ock" ]] ; then
6766
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$GITHUB_WORKSPACE/install_ock/lib
68-
export RUN_OPTS="-e OCL_ICD_FILENAMES=$GITHUB_WORKSPACE/install_ock/lib/libCL.so"
6967
export ONEAPI_DEVICE_SELECTOR=opencl:0
70-
# ... and needed for create_sycl_cts_test_lists.sh call below ...
7168
export OCL_ICD_FILENAMES=$GITHUB_WORKSPACE/install_ock/lib/libCL.so
7269
else # native_cpu
7370
export ONEAPI_DEVICE_SELECTOR=native_cpu:cpu
@@ -78,7 +75,7 @@ runs:
7875
python3 scripts/testing/create_override_csv.py -d .github/sycl_cts/ \
7976
-k ${{inputs.sycl_device}} ${{inputs.sycl_device}}_${{ inputs.target }} \
8077
-o override_combined.csv -vv
81-
78+
8279
exitcode=0
8380
set -x
8481
python3 $GITHUB_WORKSPACE/scripts/testing/run_cities.py \
@@ -88,7 +85,6 @@ runs:
8885
-p sycl_cts \
8986
-b SYCL-CTS/bin \
9087
-L SYCL-CTS/lib \
91-
$RUN_OPTS \
9288
-s $CTS_CSV_FILE \
9389
-l SYCL-CTS/cts.log -f SYCL-CTS/cts.fail \
9490
-r SYCL-CTS/cts.xml \

.github/workflows/planned_testing_caller.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ jobs:
4040

4141
# The following can be used to download from a previous workflow run (change id)
4242
# download_ock_artefact: host_x86_64_linux=12915462445;host_aarch64_linux=12915462445
43+
download_ock_artefact: host_x86_64_linux=14080727549
4344
# download_dpcpp_artefact: host_x86_64_linux=12915462445;host_aarch64_linux=12915462445
44-
#download_dpcpp_artefact: host_x86_64_linux=14058229649
45+
download_dpcpp_artefact: host_x86_64_linux=14080727549
4546
# download_sycl_cts_artefact: host_x86_64_linux=12915462445;host_aarch64_linux=12915462445
46-
download_sycl_cts_artefact: host_x86_64_linux=14058229649
47+
download_sycl_cts_artefact: host_x86_64_linux=14080727549
4748
pull_request: ${{ github.event_name == 'pull_request' }}

0 commit comments

Comments
 (0)