Skip to content

Commit 104123e

Browse files
committed
Merge remote-tracking branch 'upstream/sycl' into rtc-devglobs
2 parents e5df76d + 4f29c44 commit 104123e

File tree

294 files changed

+3990
-1492
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

294 files changed

+3990
-1492
lines changed

.ci/metrics/requirements.lock.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ pygithub==2.5.0 \
231231
--hash=sha256:b0b635999a658ab8e08720bdd3318893ff20e2275f6446fcf35bf3f44f2c0fd2 \
232232
--hash=sha256:e1613ac508a9be710920d26eb18b1905ebd9926aa49398e88151c1b526aad3cf
233233
# via -r ./requirements.txt
234-
pyjwt[crypto]==2.10.0 \
234+
pyjwt[crypto]==2.10.1 \
235235
--hash=sha256:543b77207db656de204372350926bed5a86201c4cbff159f623f79c7bb487a15 \
236236
--hash=sha256:7628a7eb7938959ac1b26e819a1df0fd3259505627b575e4bad6d08f76db695c
237237
# via pygithub

.github/workflows/pr-code-format.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88
branches:
99
- main
1010
- sycl
11-
- sycl-devops-pr/**
1211
- sycl-rel-**
1312
- 'users/**'
1413

.github/workflows/sycl-containers.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,6 @@ jobs:
5151
file: ubuntu2404_build
5252
tag: latest
5353
build_args: ""
54-
- name: Build Ubuntu 24.04 oneAPI Docker image
55-
file: ubuntu2404_build_oneapi
56-
tag: latest
57-
build_args: ""
5854
- name: Intel Drivers Ubuntu 22.04 Docker image
5955
file: ubuntu2204_intel_drivers
6056
tag: latest

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

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,19 +152,21 @@ jobs:
152152
ref: ${{ inputs.build_ref || github.sha }}
153153
merge_ref: ${{ inputs.merge_ref }}
154154
cache_path: "/__w/repo_cache/"
155+
- name: Setup oneAPI env
156+
if: ${{ inputs.cc == 'icx' || inputs.cxx == 'icpx' }}
157+
uses: ./devops/actions/setup_linux_oneapi_env
155158
- name: Configure
156159
env:
157160
CC: ${{ inputs.cc }}
158161
CXX: ${{ inputs.cxx }}
159-
ARGS: ${{ inputs.build_configure_extra_args }}
160162
CUDA_LIB_PATH: "/usr/local/cuda/lib64/stubs"
161163
run: |
162164
mkdir -p $CCACHE_DIR
163165
mkdir -p $GITHUB_WORKSPACE/build
164166
cd $GITHUB_WORKSPACE/build
165167
python3 $GITHUB_WORKSPACE/src/buildbot/configure.py -w $GITHUB_WORKSPACE \
166168
-s $GITHUB_WORKSPACE/src -o $GITHUB_WORKSPACE/build -t Release \
167-
--ci-defaults $ARGS \
169+
--ci-defaults ${{ inputs.build_configure_extra_args }} \
168170
--cmake-opt=-DCMAKE_C_COMPILER_LAUNCHER=ccache \
169171
--cmake-opt=-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
170172
--cmake-opt="-DLLVM_INSTALL_UTILS=ON" \
@@ -197,6 +199,9 @@ jobs:
197199
cmake --build $GITHUB_WORKSPACE/build --target check-sycl-unittests
198200
- name: check-llvm-spirv
199201
if: always() && !cancelled() && contains(inputs.changes, 'llvm_spirv')
202+
# Temporary workaround to disable running tests requiring spirv-tools.
203+
env:
204+
LIT_OPTS: "--param disable-spirv-tools=True"
200205
run: |
201206
cmake --build $GITHUB_WORKSPACE/build --target check-llvm-spirv
202207
- name: check-xptifw

.github/workflows/sycl-linux-matrix-e2e-on-nightly.yml

Lines changed: 0 additions & 95 deletions
This file was deleted.

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
pull_request:
88
branches:
99
- sycl
10-
- sycl-devops-pr/**
1110
- sycl-rel-**
1211
# Do not run builds if changes are only in the following locations
1312
paths-ignore:
@@ -242,7 +241,6 @@ jobs:
242241

243242
env: '{"LIT_FILTER":"PerformanceTests/"}'
244243
extra_lit_opts: -a -j 1 --param enable-perf-tests=True
245-
extra_cmake_args: ${{ matrix.extra_cmake_args }}
246244

247245
ref: ${{ github.sha }}
248246
merge_ref: ''

0 commit comments

Comments
 (0)