Skip to content

Commit e0ce3e0

Browse files
Use latest sycl bundle to build DPCTL
The intel/llvm/pull/10551 has been merged, so the build should succeed and produce working binary. The intel/llvm project has transitioned from sycl-nightly tags to nightly tags instead.
1 parent 50f1074 commit e0ce3e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/os-llvm-sycl-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ jobs:
3838
3939
- name: Download and install nightly and components
4040
env:
41-
USE_LATEST_SYCLOS: 0
41+
USE_LATEST_SYCLOS: 1
4242
shell: bash -l {0}
4343
run: |
4444
cd /home/runner/work
4545
mkdir -p sycl_bundle
4646
cd sycl_bundle
4747
if [[ "${USE_LATEST_SYCLOS:-0}" -eq "1" ]]; then
48-
# get list of shas and tags from remote, filter sycl-nightly tags and reverse order
48+
# get list of shas and tags from remote, filter nightly tags and reverse order
4949
export LLVM_TAGS=$(git -c 'versionsort.suffix=-' ls-remote --tags --sort='v:refname' https://github.com/intel/llvm.git | \
50-
grep sycl-nightly | awk '{a[i++]=$0} END {for (j=i-1; j>=0;) print a[j--] }')
50+
grep nightly | awk '{a[i++]=$0} END {for (j=i-1; j>=0;) print a[j--] }')
5151
# initialize
5252
unset DEPLOY_NIGHTLY_TAG
5353
unset DEPLOY_NIGHTLY_TAG_SHA

0 commit comments

Comments
 (0)