Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/sycl-clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ permissions: read-all
jobs:
run-clang-tidy:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'disable-lint') }}
runs-on: [Linux, build]
runs-on: [Linux, build-test]
container:
image: ghcr.io/intel/llvm/sycl_ubuntu2404_nightly:latest
options: -u 1001:1001
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sycl-coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
coverity:
if: github.repository == 'intel/llvm'
name: Coverity
runs-on: [Linux, build]
runs-on: [Linux, build-test]
container:
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
options: -u 1001:1001
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sycl-linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ permissions: read-all
jobs:
build:
name: Build + LIT
runs-on: [Linux, build]
runs-on: [Linux, build-test]
container:
image: ${{ inputs.build_image }}
options: -u 1001:1001
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sycl-linux-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
# build all the e2e tests
build_run_native_cpu_e2e_tests:
if: ${{ !cancelled() && needs.build.outputs.build_conclusion == 'success' }}
runs-on: [Linux, build]
runs-on: [Linux, build-test]
needs: [build]
container:
image: ghcr.io/intel/llvm/sycl_ubuntu2404_nightly:latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sycl-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions: read-all
jobs:
check_abi_symbols:
name: Check ABI symbols tests match release branch
runs-on: [Linux, build]
runs-on: [Linux, build-test]
# We're in the ABI breaking window now, disabling until the next major
# release.
if: github.repository == 'intel/llvm' && false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sycl-prebuilt-e2e-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# Couldn't make it work from inside the container, so have to use an extra job
# and pass an artifact.
docker:
runs-on: [Linux, build]
runs-on: [Linux, build-test]
needs: build
permissions:
packages: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sycl-rel-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
build_and_push_images:
if: github.repository == 'intel/llvm'
name: Build and Push Docker Images
runs-on: [Linux, build]
runs-on: [Linux, build-test]
permissions:
packages: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sycl-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: ./.github/workflows/sycl-linux-run-tests.yml
with:
name: Build SYCL-CTS
runner: '["Linux", "build"]'
runner: '["Linux", "build-test"]'
testing_mode: 'build-only'
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
tests_selector: cts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ur-build-offload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build_type: [Release]
compiler: [{c: gcc, cxx: g++}]

runs-on: [ "Linux", "build" ]
runs-on: [ "Linux", "build-test" ]
container:
image: 'ghcr.io/intel/llvm/ubuntu2404_build'

Expand Down
Loading