We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49e098f commit 4bf7270Copy full SHA for 4bf7270
1 file changed
.github/workflows/release.yaml
@@ -65,15 +65,6 @@ jobs:
65
submodules: 'recursive'
66
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ref || '' }}
67
68
- - name: Check LLVM version
69
- if: github.ref_type == 'tag'
70
- shell: 'bash -ex {0}'
71
- run: |
72
- # Extracts submodule branch from the submodule status output. Works in case of shallow clone.
73
- LLVM_BRANCH=$(git submodule status llvm | awk -F '[()/]' '{print $3}')
74
- [[ "${LLVM_BRANCH}" =~ ^v[0-9]+(\.[0-9]+)+(\.[0-9]+).*$ ]] || \
75
- { echo "LLVM branch is not semver: '${LLVM_BRANCH}'. Please, update LLVM.lock file."; exit 1; }
76
-
77
- name: Prepare matrix
78
id: prepare-matrix
79
run: |
0 commit comments