[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / .github / workflows / get-llvm-version / action.yml
blob2218d926fc13d6a3a78597702b0b449b832dfbf7
1 name: Get LLVM Version
2 description: >-
3   Get the LLVM version from the llvm-project source tree.  This action assumes
4   the llvm-project sources have already been checked out into GITHUB_WORKSPACE.
6 outputs:
7   major:
8     description: LLVM major version
9     value: ${{ steps.version.outputs.major }}
10   minor:
11     description: LLVM minor version
12     value: ${{ steps.version.outputs.minor }}
13   patch:
14     description: LLVM patch version
15     value: ${{ steps.version.outputs.patch }}
17 runs:
18   using: "composite"
19   steps:
20     - name: Get Version
21       shell: bash
22       id: version
23       run: |
24         for v in major minor patch; do
25           echo "$v=`llvm/utils/release/get-llvm-version.sh --$v`" >> $GITHUB_OUTPUT
26         done