Skip to content

Commit 76b8466

Browse files
Verify if CUDA runner works good now
1 parent 064d356 commit 76b8466

File tree

8 files changed

+7
-102
lines changed

8 files changed

+7
-102
lines changed

.github/workflows/bandit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ permissions:
1212

1313
jobs:
1414
bandit:
15+
if: false
1516
name: Bandit
1617
strategy:
1718
matrix:

.github/workflows/build-hw-reusable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
build_type: [Release]
5757
compiler: [{c: gcc, cxx: g++}]
5858

59-
runs-on: ${{inputs.runner_name}}
59+
runs-on: CUDA_E2E
6060

6161
steps:
6262
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

.github/workflows/codeql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ permissions:
1111

1212
jobs:
1313
analyze-ubuntu:
14+
if: false
1415
name: Analyze on Ubuntu
1516
runs-on: ${{ github.repository_owner == 'oneapi-src' && 'intel-ubuntu-22.04' || 'ubuntu-latest' }}
1617
permissions:

.github/workflows/e2e_core.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ permissions:
5353

5454
jobs:
5555
changed-files:
56+
if: false
5657
name: Check for changed files
5758
runs-on: ${{ github.repository_owner == 'oneapi-src' && 'intel-ubuntu-22.04' || 'ubuntu-latest' }}
5859
outputs:

.github/workflows/multi_device.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
jobs:
1414
examples:
1515
name: Multi Device testing
16-
if: github.repository == 'oneapi-src/unified-runtime' # run only on upstream; forks won't have the HW
16+
if: false
1717
strategy:
1818
matrix:
1919
adapter: [

.github/workflows/source-checks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ permissions:
66

77
jobs:
88
source-checks:
9+
if: false
910
strategy:
1011
matrix:
1112
os: ['ubuntu-22.04', 'windows-2022']

.github/workflows/trivy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ permissions:
1818

1919
jobs:
2020
linux:
21+
if: false
2122
name: Trivy
2223
runs-on: ${{ github.repository_owner == 'oneapi-src' && 'intel-ubuntu-22.04' || 'ubuntu-latest' }}
2324
permissions:

.github/workflows/unified-runtime.yml

Lines changed: 0 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -10,109 +10,9 @@ permissions:
1010
contents: read
1111

1212
jobs:
13-
source-checks:
14-
name: Source Checks
15-
uses: ./.github/workflows/source-checks.yml
16-
17-
level-zero:
18-
name: Level Zero
19-
uses: ./.github/workflows/build-hw-reusable.yml
20-
with:
21-
adapter_name: L0
22-
runner_name: L0
23-
24-
level-zero-v2:
25-
name: Level Zero V2
26-
uses: ./.github/workflows/build-hw-reusable.yml
27-
with:
28-
adapter_name: L0_V2
29-
runner_name: L0
30-
31-
level-zero-static:
32-
name: Level Zero static
33-
uses: ./.github/workflows/build-hw-reusable.yml
34-
with:
35-
adapter_name: L0
36-
runner_name: L0
37-
static_loader: ON
38-
static_adapter: ON
39-
40-
opencl:
41-
name: OpenCL
42-
uses: ./.github/workflows/build-hw-reusable.yml
43-
with:
44-
adapter_name: OPENCL
45-
runner_name: OPENCL
46-
platform: "Intel(R) OpenCL"
47-
4813
cuda:
4914
name: CUDA
5015
uses: ./.github/workflows/build-hw-reusable.yml
5116
with:
5217
adapter_name: CUDA
5318
runner_name: CUDA
54-
55-
hip:
56-
name: HIP
57-
uses: ./.github/workflows/build-hw-reusable.yml
58-
with:
59-
adapter_name: HIP
60-
runner_name: HIP
61-
62-
native-cpu:
63-
name: Native CPU
64-
uses: ./.github/workflows/build-hw-reusable.yml
65-
with:
66-
adapter_name: NATIVE_CPU
67-
runner_name: NATIVE_CPU
68-
69-
# Native CPU jobs are here to force the loader to be used (UR will not use the loader if there is only one target)
70-
combined-opencl-native-cpu:
71-
name: OpenCL + Native CPU (Loader)
72-
uses: ./.github/workflows/build-hw-reusable.yml
73-
with:
74-
adapter_name: OPENCL
75-
other_adapter_name: NATIVE_CPU
76-
runner_name: OPENCL
77-
platform: "OPENCL:Intel(R) OpenCL"
78-
79-
combined-level-zero-native-cpu:
80-
name: Level Zero + Native CPU (Loader)
81-
uses: ./.github/workflows/build-hw-reusable.yml
82-
with:
83-
adapter_name: L0
84-
other_adapter_name: NATIVE_CPU
85-
runner_name: L0
86-
87-
macos-build:
88-
name: macOS / Build
89-
strategy:
90-
matrix:
91-
os: ['macos-13']
92-
runs-on: ${{matrix.os}}
93-
94-
steps:
95-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
96-
97-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
98-
with:
99-
python-version: 3.9
100-
101-
- name: Install prerequisites
102-
run: python3 -m pip install -r third_party/requirements.txt
103-
104-
- name: Install hwloc
105-
run: brew install hwloc
106-
107-
- name: Configure CMake
108-
run: >
109-
cmake
110-
-B${{github.workspace}}/build
111-
-DUR_ENABLE_TRACING=ON
112-
-DUR_DEVELOPER_MODE=ON
113-
-DCMAKE_BUILD_TYPE=Release
114-
-DUR_BUILD_TESTS=ON
115-
-DUR_FORMAT_CPP_STYLE=ON
116-
-DUMF_ENABLE_POOL_TRACKING=ON
117-
- name: Build
118-
run: cmake --build ${{github.workspace}}/build -j $(sysctl -n hw.logicalcpu)

0 commit comments

Comments
 (0)