File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments