Skip to content

Commit 79f6fc8

Browse files
committed
19 -> 20
1 parent 3c1945e commit 79f6fc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/on-push-verification-in-tree.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ jobs:
4141
run: |
4242
BRANCH="${{ github.base_ref }}" # on: pull_request, otherwise null
4343
BRANCH=${BRANCH:-${{ github.ref_name }}} # on: push
44-
LLVM_VERSION_LONG=$(echo $BRANCH | grep -oP 'ocl-open-\K\d+') # Eg. 190 for LLVM 19
44+
LLVM_VERSION_LONG=$(echo $BRANCH | grep -oP 'ocl-open-\K\d+') # Eg. 200 for LLVM 20
4545
if [ -z "$LLVM_VERSION_LONG" ]; then
4646
echo "[OPENCL-CLANG] Error: Could not parse LLVM version from branch name '$BRANCH'"
4747
exit 1
4848
fi
49-
LLVM_VERSION_SHORT=${LLVM_VERSION_LONG::-1} # Eg. 19 for LLVM 19
49+
LLVM_VERSION_SHORT=${LLVM_VERSION_LONG::-1} # Eg. 20 for LLVM 20
5050
echo "llvm_version=$LLVM_VERSION_SHORT" >> $GITHUB_OUTPUT
5151
5252
- name: Run build-opencl-clang action

0 commit comments

Comments
 (0)