-
-
Notifications
You must be signed in to change notification settings - Fork 0
437 lines (335 loc) · 14.3 KB
/
llvm-build-bump-pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
name: llvm-build-bump-pr
on:
workflow_dispatch:
inputs:
force-run:
description: Force run
required: false
default: false
type: boolean
schedule:
- cron: '0 1 * * 1'
env:
GH_TOKEN: ${{ secrets.GH_PAT }}
LLVM_REPO: llvm/llvm-project
LLVM_REPO_SHORT: llvm-project
CLANG_FORMAT_GIT: cfg
CLANG_FORMAT_NODE: cfn
jobs:
# Check if my package is up-to-date
stage1:
runs-on: ubuntu-latest
steps:
- name: Set up checkout
uses: actions/checkout@v4
- name: Fetch LLVM current release tag name from local
run: |
LLVM_CURRENT_RELEASE_TAG_NAME=$(cat .clang-format-version)
echo "LLVM_CURRENT_RELEASE_TAG_NAME=$LLVM_CURRENT_RELEASE_TAG_NAME" >> $GITHUB_ENV
echo "LLVM_CURRENT_RELEASE_TAG_NAME: $LLVM_CURRENT_RELEASE_TAG_NAME"
- name: Fetch LLVM latest release tag name from ${{ env.LLVM_REPO }}
run: |
LLVM_LATEST_RELEASE=$(gh api \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/${{ env.LLVM_REPO }}/releases/latest)
LLVM_LATEST_RELEASE_TAG_NAME=$(echo "$LLVM_LATEST_RELEASE" | jq -r .tag_name)
echo "LLVM_LATEST_RELEASE_TAG_NAME=$LLVM_LATEST_RELEASE_TAG_NAME" >> $GITHUB_ENV
echo "LLVM_LATEST_RELEASE_TAG_NAME: $LLVM_LATEST_RELEASE_TAG_NAME"
- name: Debug outputs
run: |
echo "LLVM_CURRENT_RELEASE_TAG_NAME: ${{ env.LLVM_CURRENT_RELEASE_TAG_NAME }}"
echo "LLVM_LATEST_RELEASE_TAG_NAME: ${{ env.LLVM_LATEST_RELEASE_TAG_NAME }}"
echo "IS_LATEST: ${{ env.LLVM_CURRENT_RELEASE_TAG_NAME == env.LLVM_LATEST_RELEASE_TAG_NAME }}"
outputs:
LLVM_CURRENT_RELEASE_TAG_NAME: ${{ env.LLVM_CURRENT_RELEASE_TAG_NAME }}
LLVM_LATEST_RELEASE_TAG_NAME: ${{ env.LLVM_LATEST_RELEASE_TAG_NAME }}
IS_LATEST: ${{ env.LLVM_CURRENT_RELEASE_TAG_NAME == env.LLVM_LATEST_RELEASE_TAG_NAME }}
# Linux-x64
stage2-build-linux-x64:
runs-on: ubuntu-22.04
needs: stage1
if: ${{ needs.stage1.outputs.IS_LATEST == 'false' || inputs.force-run }}
steps:
- name: Set up node
uses: actions/setup-node@v4
- name: Set up os platform and os arch environment variables
run: |
OS_PLATFORM=$(node -p "require('os').platform()")
echo "OS_PLATFORM=$OS_PLATFORM" >> $GITHUB_ENV
echo "OS_PLATFORM: $OS_PLATFORM"
OS_ARCH=$(node -p "require('os').arch()")
echo "OS_ARCH=$OS_ARCH" >> $GITHUB_ENV
echo "OS_ARCH: $OS_ARCH"
- name: Set up dependencies
run: |
sudo apt update -y
sudo apt install -y ninja-build
pip install pyinstaller
- name: Set up checkout
uses: actions/checkout@v4
with:
repository: ${{ env.LLVM_REPO }}
ref: ${{ needs.stage1.outputs.LLVM_LATEST_RELEASE_TAG_NAME }}
- name: Debug ls
run: ls -al
# packages:clang-format-git
- name: Build git-clang-format
run: pyinstaller --onefile --strip --optimize=2 clang/tools/clang-format/git-clang-format
- name: Debug git-clang-format help
run: dist/git-clang-format --help
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.CLANG_FORMAT_GIT }}-${{ env.OS_PLATFORM }}-${{ env.OS_ARCH }}
path: dist/git-clang-format
# packages:clang-format-git-python
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: git-clang-format
path: clang/tools/clang-format/git-clang-format
# packages:clang-format-node
- name: Build cmake
run: |
cmake -S llvm -B build -G Ninja \
-DLLVM_ENABLE_PROJECTS="clang" \
-DCMAKE_BUILD_TYPE=MinSizeRel
- name: Build clang-format
run: ninja -C build clang-format
- name: Debug clang-format version
run: build/bin/clang-format --version
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.CLANG_FORMAT_NODE }}-${{ env.OS_PLATFORM }}-${{ env.OS_ARCH }}
path: build/bin/clang-format
# Linux-qemu(cross-platform)
stage2-build-linux-qemu:
strategy:
matrix:
docker:
- platform: arm/v7
ubuntu-image: arm32v7
node-name: arm
- platform: arm64/v8
ubuntu-image: arm64v8
node-name: arm64
- platform: ppc64le
ubuntu-image: ppc64le
node-name: ppc64
- platform: s390x
ubuntu-image: s390x
node-name: s390x
runs-on: ubuntu-22.04
needs: stage1
if: ${{ needs.stage1.outputs.IS_LATEST == 'false' || inputs.force-run }}
steps:
- name: Debug matrix
run: echo ${{ matrix.docker.platform }} ${{ matrix.docker.ubuntu-image }} ${{ matrix.docker.node-name }}
- name: Set up QEMU
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
# Use the oldest ubuntu image version possible for backward compatibility.
- name: Docker run
run: |
docker run --name ${{ matrix.docker.node-name }} --platform linux/${{ matrix.docker.platform }} ${{ matrix.docker.ubuntu-image }}/ubuntu:22.04 /bin/bash -c "
echo ---Set up environment variables--- &&
export DEBIAN_FRONTEND=noninteractive &&
echo ---Debug uname -m--- &&
uname -m &&
echo ---Debug pwd--- &&
pwd &&
echo ---Set up dependencies--- &&
apt update -y &&
apt install -y git python3 python3-pip g++ cmake ninja-build &&
pip install pyinstaller &&
echo ---Set up checkout--- &&
git clone --depth 1 --branch ${{ needs.stage1.outputs.LLVM_LATEST_RELEASE_TAG_NAME }} https://github.com/${{ env.LLVM_REPO }}.git &&
cd ${{ env.LLVM_REPO_SHORT }} &&
echo ---Debug ls--- &&
ls -al &&
echo ----------packages:clang-format-git---------- &&
echo ---Build git-clang-format--- &&
pyinstaller --onefile --strip --optimize=2 clang/tools/clang-format/git-clang-format &&
echo ---Debug git-clang-format help--- &&
dist/git-clang-format --help &&
echo ----------packages:clang-format-node---------- &&
echo ---Build cmake--- &&
cmake -S llvm -B build -G Ninja \
-DLLVM_ENABLE_PROJECTS="clang" \
-DCMAKE_BUILD_TYPE=MinSizeRel &&
echo ---Build clang-format--- &&
ninja -C build clang-format &&
echo ---Debug clang-format version--- &&
build/bin/clang-format --version &&
echo ---Debug uname -m--- &&
uname -m
"
- name: Copy git-clang-format from Docker container
run: docker cp ${{ matrix.docker.node-name }}:/${{ env.LLVM_REPO_SHORT }}/dist ./${{ env.CLANG_FORMAT_GIT }}-linux-${{ matrix.docker.node-name }}
- name: Debug copied git-clang-format folder
run: ls ./${{ env.CLANG_FORMAT_GIT }}-linux-${{ matrix.docker.node-name }}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.CLANG_FORMAT_GIT }}-linux-${{ matrix.docker.node-name }}
path: ./${{ env.CLANG_FORMAT_GIT }}-linux-${{ matrix.docker.node-name }}/git-clang-format
- name: Copy clang-format from Docker container
run: docker cp ${{ matrix.docker.node-name }}:/${{ env.LLVM_REPO_SHORT }}/build/bin ./${{ env.CLANG_FORMAT_NODE }}-linux-${{ matrix.docker.node-name }}
- name: Debug copied clang-format folder
run: ls ./${{ env.CLANG_FORMAT_NODE }}-linux-${{ matrix.docker.node-name }}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.CLANG_FORMAT_NODE }}-linux-${{ matrix.docker.node-name }}
path: ./${{ env.CLANG_FORMAT_NODE }}-linux-${{ matrix.docker.node-name }}/clang-format
# MacOS
stage2-build-darwin:
strategy:
matrix:
type:
- macos-14 # arm64 (macos-latest: arm64)
- macos-13 # x64 (macos-12(deprecated): x64)
# Use the oldest version possible for backward compatibility.
runs-on: ${{ matrix.type }}
needs: stage1
if: ${{ needs.stage1.outputs.IS_LATEST == 'false' || inputs.force-run }}
steps:
- name: Set up node
uses: actions/setup-node@v4
- name: Set up os platform and os arch environment variables
run: |
OS_PLATFORM=$(node -p "require('os').platform()")
echo "OS_PLATFORM=$OS_PLATFORM" >> $GITHUB_ENV
echo "OS_PLATFORM: $OS_PLATFORM"
OS_ARCH=$(node -p "require('os').arch()")
echo "OS_ARCH=$OS_ARCH" >> $GITHUB_ENV
echo "OS_ARCH: $OS_ARCH"
- name: Set up dependencies
run: |
brew update
brew install ninja
pip install pyinstaller
- name: Set up checkout
uses: actions/checkout@v4
with:
repository: ${{ env.LLVM_REPO }}
ref: ${{ needs.stage1.outputs.LLVM_LATEST_RELEASE_TAG_NAME }}
- name: Debug ls
run: ls -al
# packages:clang-format-git
- name: Build git-clang-format
run: pyinstaller --onefile --strip --optimize=2 clang/tools/clang-format/git-clang-format
- name: Debug git-clang-format help
run: dist/git-clang-format --help
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.CLANG_FORMAT_GIT }}-${{ env.OS_PLATFORM }}-${{ env.OS_ARCH }}
path: dist/git-clang-format
# packages:clang-format-node
- name: Build cmake
run: |
cmake -S llvm -B build -G Ninja \
-DLLVM_ENABLE_PROJECTS="clang" \
-DCMAKE_BUILD_TYPE=MinSizeRel
- name: Build clang-format
run: ninja -C build clang-format
- name: Debug clang-format version
run: build/bin/clang-format --version
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.CLANG_FORMAT_NODE }}-${{ env.OS_PLATFORM }}-${{ env.OS_ARCH }}
path: build/bin/clang-format
# Windows
stage2-build-win32:
# Use the oldest version possible for backward compatibility.
runs-on: windows-2022
needs: stage1
if: ${{ needs.stage1.outputs.IS_LATEST == 'false' || inputs.force-run }}
steps:
- name: Set up node
uses: actions/setup-node@v4
- name: Set up os platform and os arch environment variables
run: |
$OS_PLATFORM = node -p "require('os').platform()"
echo "OS_PLATFORM=$OS_PLATFORM" >> $env:GITHUB_ENV
echo "OS_PLATFORM: $OS_PLATFORM"
$OS_ARCH = node -p "require('os').arch()"
echo "OS_ARCH=$OS_ARCH" >> $env:GITHUB_ENV
echo "OS_ARCH: $OS_ARCH"
- name: Set up dependencies
run: |
choco install -y ninja
pip install pyinstaller
- name: Set up checkout
uses: actions/checkout@v4
with:
repository: ${{ env.LLVM_REPO }}
ref: ${{ needs.stage1.outputs.LLVM_LATEST_RELEASE_TAG_NAME }}
# packages:clang-format-git
- name: Build git-clang-format
run: pyinstaller --onefile --strip --optimize=2 clang\tools\clang-format\git-clang-format
- name: Debug git-clang-format help
run: dist\git-clang-format.exe --help
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.CLANG_FORMAT_GIT }}-${{ env.OS_PLATFORM }}-${{ env.OS_ARCH }}
path: dist\git-clang-format.exe
# packages:clang-format-node
- name: Build cmake
run: cmake -S llvm -B build -G Ninja -DLLVM_ENABLE_PROJECTS="clang" -DCMAKE_BUILD_TYPE=MinSizeRel
- name: Build clang-format
run: ninja -C build clang-format
- name: Debug clang-format version
run: build\bin\clang-format --version
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.CLANG_FORMAT_NODE }}-${{ env.OS_PLATFORM }}-${{ env.OS_ARCH }}
path: build\bin\clang-format.exe
# Create PR using build artifacts and bump version
stage3:
runs-on: ubuntu-latest
needs:
- stage1
- stage2-build-linux-x64
- stage2-build-linux-qemu
- stage2-build-darwin
- stage2-build-win32
steps:
- name: Set up checkout
uses: actions/checkout@v4
- name: Download artifacts for clang-format-git
uses: actions/download-artifact@v4
with:
path: packages/clang-format-git/src/bin
pattern: cfg-*
- name: Download artifacts for clang-format-git-python
uses: actions/download-artifact@v4
with:
path: packages/clang-format-git-python/src/script
name: git-clang-format
- name: Download artifacts for clang-format-node
uses: actions/download-artifact@v4
with:
path: packages/clang-format-node/src/bin
pattern: cfn-*
- name: Update file permissions to 755
run: npm run chmod --workspaces --if-present
- name: Bump version
run: echo ${{ needs.stage1.outputs.LLVM_LATEST_RELEASE_TAG_NAME }} > .clang-format-version
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GH_PAT }}
commit-message: 'chore(deps): bump LLVM from ${{ needs.stage1.outputs.LLVM_CURRENT_RELEASE_TAG_NAME }} to ${{ needs.stage1.outputs.LLVM_LATEST_RELEASE_TAG_NAME }}'
branch: 'bump-llvm-from-${{ needs.stage1.outputs.LLVM_CURRENT_RELEASE_TAG_NAME }}-to-${{ needs.stage1.outputs.LLVM_LATEST_RELEASE_TAG_NAME }}'
base: 'main'
title: 'chore(deps): bump LLVM from ${{ needs.stage1.outputs.LLVM_CURRENT_RELEASE_TAG_NAME }} to ${{ needs.stage1.outputs.LLVM_LATEST_RELEASE_TAG_NAME }}'
body: |
This PR bumps the LLVM version from `${{ needs.stage1.outputs.LLVM_CURRENT_RELEASE_TAG_NAME }}` to `${{ needs.stage1.outputs.LLVM_LATEST_RELEASE_TAG_NAME }}` using LLVM binary that was built automatically. :tada:
See [Actions](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) for more details.
labels: dependencies