Skip to content

Commit e7d93c3

Browse files
committed
[TEST] Test new runner
1 parent 41a107a commit e7d93c3

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/sycl-linux-precommit.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,12 +233,13 @@ jobs:
233233
uses: ./.github/workflows/sycl-linux-run-tests.yml
234234
with:
235235
name: Benchmark suite precommit testing
236-
runner: '["PVC_PERF"]'
236+
runner: '["test-runner"]'
237237
image: ghcr.io/intel/llvm/sycl_ubuntu2404_nightly:latest
238238
image_options: -u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN
239239
target_devices: 'level_zero:gpu'
240240
tests_selector: benchmarks
241-
benchmark_upload_results: false
241+
benchmark_upload_results: true
242+
benchmark_save_name: 'test_runner_46'
242243
benchmark_preset: 'Minimal'
243244
benchmark_dry_run: true
244245
repo_ref: ${{ github.sha }}

devops/scripts/benchmarks/benches/compute.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
from git_project import GitProject
1919

2020

21+
# Tst runner
22+
2123
class RUNTIMES(Enum):
2224
SYCL_PREVIEW = "syclpreview"
2325
SYCL = "sycl"

devops/scripts/benchmarks/utils/validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def runner_name(runner_name: str, throw: Exception = None):
2727
"""
2828
Returns True if runner_name is clean (no illegal characters).
2929
"""
30-
return Validate.on_re(runner_name, r"^[a-zA-Z0-9_]+$", throw=throw)
30+
return Validate.on_re(runner_name, r"^[a-zA-Z0-9_-]+$", throw=throw)
3131

3232
@staticmethod
3333
def timestamp(t: str, throw: Exception = None):

0 commit comments

Comments
 (0)