Skip to content

Commit 2571003

Browse files
TEST umf version
1 parent e2a7ee6 commit 2571003

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/reusable_sycl.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ jobs:
1616
runs-on: ["DSS-LEVEL_ZERO", "DSS-UBUNTU"]
1717

1818
strategy:
19+
fail-fast: false
1920
matrix:
20-
llvm_tag: ["latest", "nightly-2025-03-15"] # "latest" or llvm with UMF v0.11.0-dev4
21+
llvm_tag: ["latest", "nightly-2025-05-16", "nightly-2025-05-19"]
2122

2223
steps:
2324
# 1. Install sycl
@@ -44,8 +45,11 @@ jobs:
4445
mkdir llvm
4546
tar -xzf sycl.tar.gz -C llvm --strip-components=1
4647
47-
- name: Remove UMF installed with llvm
48-
run: rm -f llvm/lib/libumf*
48+
- name: Check and remove UMF installed with llvm
49+
run: |
50+
ldd llvm/lib/libumf.so.0
51+
nm -Dg llvm/lib/libumf.so.0
52+
rm -f llvm/lib/libumf*
4953
5054
- name: Add sycl to PATH
5155
run: |
@@ -59,6 +63,11 @@ jobs:
5963
path: umf_repo
6064
fetch-depth: 0
6165

66+
- name: Check installed UMF
67+
run: |
68+
ldd llvm/lib/libumf.so.0
69+
nm -Dg llvm/lib/libumf.so.0
70+
6271
- name: Configure UMF
6372
working-directory: umf_repo
6473
run: >

0 commit comments

Comments
 (0)