mirror of
https://github.com/clangd/clangd.git
synced 2025-04-05 00:12:10 +00:00
Allow using a different repository for the manual release (#754)
Extract the repository from the release message. This will help us have more control over the release process.
This commit is contained in:
parent
d561d317fc
commit
fc7440e2e5
12
.github/workflows/autobuild.yaml
vendored
12
.github/workflows/autobuild.yaml
vendored
@ -13,9 +13,11 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Find LLVM commit
|
- name: Find LLVM commit
|
||||||
run: |
|
run: |
|
||||||
grep -m 1 -o "llvm-project@[[:xdigit:]]\{40,\}" << EOF | cut -f 2 -d@ > commit
|
perl -ne 'print "LLVM_REPO=$1\nLLVM_COMMIT=$2\n" if /(\w+\/llvm-project)@([[:xdigit:]]{40,})/' > commit.env <<EOF
|
||||||
${{ github.event.release.body }}
|
${{ gthub.event.release.body }}
|
||||||
EOF
|
EOF
|
||||||
|
- name: Check LLVM commit was founud
|
||||||
|
run: grep LLVM_REPO commit.env
|
||||||
- name: Mark as draft
|
- name: Mark as draft
|
||||||
run: >
|
run: >
|
||||||
curl --fail --show-error -XPATCH
|
curl --fail --show-error -XPATCH
|
||||||
@ -26,7 +28,7 @@ jobs:
|
|||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: release
|
name: release
|
||||||
path: commit
|
path: commit.env
|
||||||
# Build clangd using CMake/Ninja.
|
# Build clangd using CMake/Ninja.
|
||||||
#
|
#
|
||||||
# This step is a template that runs on each OS, build config varies slightly.
|
# This step is a template that runs on each OS, build config varies slightly.
|
||||||
@ -125,13 +127,13 @@ jobs:
|
|||||||
with: { name: release }
|
with: { name: release }
|
||||||
- name: Set target commit
|
- name: Set target commit
|
||||||
run: |
|
run: |
|
||||||
echo "LLVM_COMMIT=$(cat release/commit)" >> $GITHUB_ENV
|
cat release/commit.env >> $GITHUB_ENV
|
||||||
echo "CLANGD_DIR=clangd_${{ github.event.release.tag_name }}" >> $GITHUB_ENV
|
echo "CLANGD_DIR=clangd_${{ github.event.release.tag_name }}" >> $GITHUB_ENV
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Clone LLVM
|
- name: Clone LLVM
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: llvm/llvm-project
|
repository: ${{ env.LLVM_REPO }}
|
||||||
path: llvm-project
|
path: llvm-project
|
||||||
ref: ${{ env.LLVM_COMMIT }}
|
ref: ${{ env.LLVM_COMMIT }}
|
||||||
- name: CMake
|
- name: CMake
|
||||||
|
Loading…
Reference in New Issue
Block a user