Skip to content

Commit 879c3ae

Browse files
author
Alexander Batashev
authored
[CI] Update labels in configs (#5758)
Always specify OS name in config files
1 parent cef0eed commit 879c3ae

File tree

5 files changed

+5
-9
lines changed

5 files changed

+5
-9
lines changed

.github/workflows/sycl_linux_build_and_test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ on:
1515
type: string
1616
required: false
1717
default: "ghcr.io/intel/llvm/ubuntu2004_build:latest"
18-
build_runs_on:
19-
type: string
20-
required: false
21-
default: "build"
2218
build_ref:
2319
type: string
2420
required: false
@@ -68,7 +64,7 @@ on:
6864
jobs:
6965
build:
7066
name: Build + LIT
71-
runs-on: ${{ inputs.build_runs_on }}
67+
runs-on: [Linux, build]
7268
container:
7369
image: ${{ inputs.build_image }}
7470
options: -u 1001:1001

.github/workflows/sycl_nightly.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ jobs:
6464
if: github.repository == 'intel/llvm'
6565
uses: ./.github/workflows/sycl_linux_build_and_test.yml
6666
with:
67-
build_runs_on: build
6867
build_cache_root: "/__w/"
6968
build_cache_suffix: new_pm
7069
build_artifact_suffix: new_pm

.github/workflows/sycl_post_commit.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,12 @@ jobs:
1515
name: Linux Default
1616
uses: ./.github/workflows/sycl_linux_build_and_test.yml
1717
with:
18-
build_runs_on: build
1918
build_cache_root: "/__w/llvm"
2019
build_artifact_suffix: default
2120
linux_no_assert:
2221
name: Linux (no assert)
2322
uses: ./.github/workflows/sycl_linux_build_and_test.yml
2423
with:
25-
build_runs_on: build
2624
build_cache_root: "/__w/llvm"
2725
build_cache_suffix: gcc_no_assertions
2826
build_artifact_suffix: gcc_no_assertions

.github/workflows/sycl_precommit.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
if: always() && (success() || contains(github.event.pull_request.labels.*.name, 'ignore-lint'))
3636
uses: ./.github/workflows/sycl_linux_build_and_test.yml
3737
with:
38-
build_runs_on: "build"
3938
build_cache_root: "/__w/"
4039
build_cache_size: "8G"
4140
build_artifact_suffix: "default"

devops/test_configs.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"config": "l0_gen9",
55
"name": "L0 GEN9 LLVM Test Suite",
66
"runs-on": [
7+
"Linux",
78
"gen9"
89
],
910
"image": "${{ inputs.intel_drivers_image }}",
@@ -15,6 +16,7 @@
1516
"config": "ocl_gen9",
1617
"name": "OCL GEN9 LLVM Test Suite",
1718
"runs-on": [
19+
"Linux",
1820
"gen9"
1921
],
2022
"image": "${{ inputs.intel_drivers_image }}",
@@ -26,6 +28,7 @@
2628
"config": "ocl_x64",
2729
"name": "OCL x64 LLVM Test Suite",
2830
"runs-on": [
31+
"Linux",
2932
"x64"
3033
],
3134
"image": "${{ inputs.intel_drivers_image }}",
@@ -37,6 +40,7 @@
3740
"config": "hip_amdgpu",
3841
"name": "HIP AMDGPU LLVM Test Suite",
3942
"runs-on": [
43+
"Linux",
4044
"amdgpu"
4145
],
4246
"image": "${{ inputs.amdgpu_image }}",

0 commit comments

Comments
 (0)