Skip to content

Commit

Permalink
Just use a normal runner
Browse files Browse the repository at this point in the history
  • Loading branch information
KornevNikita committed Mar 6, 2024
1 parent 7d9efb8 commit 2fc429b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/sycl-linux-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ on:
if inputs.target_devices contains 'ext_oneapi_hip'
type: string
required: False
ninja_build_cts_extra_args:
type: string
required: False
tests_selector:
description: |
Two possible options: "e2e" and "cts".
Expand Down Expand Up @@ -107,8 +104,6 @@ on:
- 'opencl:fpga'
- 'ext_oneapi_level_zero:gpu'
- 'ext_oneapi_hip:gpu'
ninja_build_cts_extra_args:
type: string
tests_selector:
type: choice
options:
Expand Down Expand Up @@ -283,7 +278,6 @@ jobs:
if: inputs.tests_selector == 'cts'
env:
CMAKE_EXTRA_ARGS: ${{ inputs.extra_cmake_args }}
NINJA_BUILD_CTS_EXTRA_ARGS: ${{ inputs.ninja_build_cts_extra_args }}
run: |
cmake -GNinja -B./build-cts -S./khronos_sycl_cts -DCMAKE_CXX_COMPILER=$(which clang++) \
-DSYCL_IMPLEMENTATION=DPCPP \
Expand All @@ -292,7 +286,7 @@ jobs:
-DSYCL_CTS_MEASURE_BUILD_TIMES=ON \
-DDPCPP_INSTALL_DIR="$$(dirname (which clang++))/.." \
$CMAKE_EXTRA_ARGS
ninja -C build-cts $NINJA_BUILD_CTS_EXTRA_ARGS
ninja -C build-cts
- name: SYCL CTS List devices
if: inputs.tests_selector == 'cts'
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/sycl-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,11 @@ jobs:
target_devices: ext_oneapi_cuda:gpu

- name: SYCL-CTS
runner: '["cts-cpu"]'
runner: '["Linux", "gen12"]'
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
target_devices: opencl:cpu
tests_selector: cts
ninja_build_cts_extra_args: '-j8'
uses: ./.github/workflows/sycl-linux-run-tests.yml
with:
name: ${{ matrix.name }}
Expand Down

0 comments on commit 2fc429b

Please sign in to comment.