We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 614b1a0 commit 391a3f7Copy full SHA for 391a3f7
.github/workflows/on-push-verification-in-tree.yml
@@ -41,7 +41,7 @@ jobs:
41
run: |
42
BRANCH="${{ github.base_ref }}" # on: pull_request, otherwise null
43
BRANCH=${BRANCH:-${{ github.ref_name }}} # on: push
44
- LLVM_VERSION_LONG=$(echo $BRANCH | grep -oP '\d+') # Eg. 190 for LLVM 19
+ LLVM_VERSION_LONG=$(echo $BRANCH | grep -oP 'ocl-open-\K\d+') # Eg. 190 for LLVM 19
45
LLVM_VERSION_SHORT=${LLVM_VERSION_LONG::-1} # Eg. 19 for LLVM 19
46
echo "llvm_version=$LLVM_VERSION_SHORT" >> $GITHUB_OUTPUT
47
0 commit comments