Skip to content

Revert "[runtimes] Add missing test dependencies to check-all (#72955)" #36

Revert "[runtimes] Add missing test dependencies to check-all (#72955)"

Revert "[runtimes] Add missing test dependencies to check-all (#72955)" #36

Workflow file for this run

name: LLVM Project Version Check
on:
push:
branches:
- 'release/**'
pull_request:
branches:
- 'release/**'
permissions:
contents: read
jobs:
version_check:
if: github.repository_owner == 'llvm'
runs-on: ubuntu-latest
steps:
- name: Fetch LLVM sources
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: |
pip install -r ./llvm/utils/git/requirements.txt
- name: Version Check
run: |
version=$(grep -o 'LLVM_VERSION_\(MAJOR\|MINOR\|PATCH\) [0-9]\+' llvm/CMakeLists.txt | cut -d ' ' -f 2 | tr "\n" "." | sed 's/.$//g')
.github/workflows/version-check.py $version