-
Notifications
You must be signed in to change notification settings - Fork 0
406 lines (327 loc) · 11 KB
/
publish.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
name: Build & Publish
permissions: write-all
on:
push:
workflow_dispatch:
schedule:
- cron: "0 0 1 * *"
jobs:
tag:
name: Get Tag + Release
runs-on: ubuntu-24.04
outputs:
tag: ${{ steps.ver.outputs.TAG_NAME }}
upload: ${{ steps.release.outputs.upload_url }}
id: ${{ steps.release.outputs.id }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
- name: Get Tag
run: |
node ver.js
chmod 777 ./publish
./publish
env:
NIGHTLY: ${{ github.event_name == 'push' }}
id: ver
- name: Create Release
uses: shogo82148/actions-create-release@v1
id: release
with:
tag_name: ${{ steps.ver.outputs.TAG_NAME }}
prerelease: ${{ github.event_name == 'push' }}
draft: true
publish_cargo:
needs: [tag]
name: Publish to cargo
continue-on-error: true
runs-on: ubuntu-24.04
steps:
- name: Initial Commit
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
- name: Add Version Info
run: node ver.js
env:
NIGHTLY: ${{ github.event_name == 'push' }}
LEAD_VER: ${{ needs.tag.outputs.tag }}
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
components: rust-src
- name: Publish
run: |
cd interpreter
cargo publish --allow-dirty || true
cd ../macros
cargo publish --allow-dirty || true
continue-on-error: true
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_TOKEN }}
- name: Commit Suffix
uses: EndBug/add-and-commit@v9
with:
add: suffix
author_name: GitHub Actions
author_email: actions@github.com
message: Consume suffix file
build:
name: Release & Publish T1
continue-on-error: true
needs: [tag]
strategy:
fail-fast: true
matrix:
include:
- target: x86_64-pc-windows-msvc
runner: windows-latest
- target: i686-pc-windows-msvc
runner: windows-latest
- target: aarch64-pc-windows-msvc
runner: windows-latest
- target: x86_64-unknown-linux-gnu
runner: ubuntu-22.04
- target: aarch64-unknown-linux-gnu
runner: ubuntu-22.04-arm
- target: x86_64-unknown-linux-musl
runner: ubuntu-22.04
- target: aarch64-unknown-linux-musl
runner: ubuntu-22.04-arm
- target: x86_64-apple-darwin
runner: macos-latest
- target: aarch64-apple-darwin
runner: macos-latest
runs-on: ${{ matrix.runner }}
steps:
- name: Initial Commit
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
- name: Setup pnpm
run: npm i -g pnpm
- name: Add Version Info
run: node ver.js
env:
NIGHTLY: ${{ github.event_name == 'push' }}
LEAD_VER: ${{ needs.tag.outputs.tag }}
- name: Install Rust
run: |
rustup toolchain add nightly --profile minimal
rustup target add ${{ matrix.target }} --toolchain nightly || true
rustup component add rust-src --toolchain nightly
rustup default nightly
- name: Install Deps
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt install gcc-aarch64-linux-gnu musl-tools clang lld
sudo apt install flex zip help2man gawk libtool libtool-bin libtool-doc bison texinfo
sudo apt install build-essential \
curl \
wget \
file \
pkg-config
target="${{ matrix.target }}"
sudo apt update
sudo apt install libwebkit2gtk-4.1-dev \
build-essential \
curl \
wget \
file \
libxdo-dev \
libssl-dev \
libayatana-appindicator3-dev \
librsvg2-dev \
libgtk-3-dev
- name: Build Lead Docs UI
run: pnpm install; pnpm build
working-directory: lead_docs/ui
- name: Package stuff (Unix)
if: runner.os != 'Windows'
run: |
arch="${{ matrix.target }}"
cargo +nightly run --release
env:
TARGET: ${{ matrix.target }}
- name: Package stuff (Windows)
if: runner.os == 'Windows'
run: cargo +nightly run --release
env:
TARGET: ${{ matrix.target }}
- name: Build Leadman
run: |
cargo +nightly build --target ${{ matrix.target }} --release
working-directory: leadman
- name: Publish Linux / Macos Bin
uses: shogo82148/actions-upload-release-asset@v1
if: matrix.runner != 'windows-latest'
with:
asset_path: ./leadman/target/${{ matrix.target }}/release/leadman
asset_name: leadman_${{ matrix.target }}
upload_url: ${{ needs.tag.outputs.upload }}
- name: Publish Windows Bin
uses: shogo82148/actions-upload-release-asset@v1
if: runner.os == 'Windows'
with:
asset_path: ./leadman/target/${{ matrix.target }}/release/leadman.exe
asset_name: leadman_${{ matrix.target }}.exe
upload_url: ${{ needs.tag.outputs.upload }}
- name: Publish Leadman SO
uses: shogo82148/actions-upload-release-asset@v1
if: runner.os == 'Linux'
with:
asset_path: ./leadman/target/${{ matrix.target }}/release/libleadman_lib.so
asset_name: libleadman_${{ matrix.target }}.so
upload_url: ${{ needs.tag.outputs.upload }}
- name: Publish Leadman Dylib
uses: shogo82148/actions-upload-release-asset@v1
if: runner.os == 'macOS'
with:
asset_path: ./leadman/target/${{ matrix.target }}/release/libleadman_lib.dylib
asset_name: libleadman_${{ matrix.target }}.dylib
upload_url: ${{ needs.tag.outputs.upload }}
- name: Publish Leadman DLL
uses: shogo82148/actions-upload-release-asset@v1
if: runner.os == 'Windows'
with:
asset_path: ./leadman/target/${{ matrix.target }}/release/leadman_lib.dll
asset_name: leadman_${{ matrix.target }}_lib.dll
upload_url: ${{ needs.tag.outputs.upload }}
- name: Publish
uses: shogo82148/actions-upload-release-asset@v1
with:
asset_path: ./build.zip
asset_name: binaries_${{ matrix.target }}.zip
upload_url: ${{ needs.tag.outputs.upload }}
build-cross:
name: Release & Publish T2
continue-on-error: true
needs: [tag]
strategy:
fail-fast: false
matrix:
target:
- i686-unknown-linux-gnu
- armv7-unknown-linux-gnueabi
- armv7-unknown-linux-gnueabihf
- arm-unknown-linux-gnueabi
- arm-unknown-linux-gnueabihf
- armv5te-unknown-linux-gnueabi
- armv5te-unknown-linux-musleabi
# MUSL
- armv7-unknown-linux-musleabi
- armv7-unknown-linux-musleabihf
- arm-unknown-linux-musleabi
- arm-unknown-linux-musleabihf
# MIPS GNU
- mips-unknown-linux-gnu
- mips64-unknown-linux-gnuabi64
- mips64el-unknown-linux-gnuabi64
- mipsel-unknown-linux-gnu
# MIPS MUSL (to be fixed)
# - mips-unknown-linux-musl
# - mips64-unknown-linux-muslabi64
# - mips64el-unknown-linux-muslabi64
# - mipsel-unknown-linux-musl
# LongArch
- loongarch64-unknown-linux-gnu
- loongarch64-unknown-linux-musl
# PowerPC
- powerpc-unknown-linux-gnu
- powerpc64-unknown-linux-gnu
- powerpc64le-unknown-linux-gnu
# FreeBSD
- x86_64-unknown-freebsd
- aarch64-unknown-freebsd
- i686-unknown-freebsd
# NetBSD
- x86_64-unknown-netbsd
# Illumos & DFLY BSD
- x86_64-unknown-illumos
- x86_64-unknown-dragonfly
# Android
- aarch64-linux-android
- armv7-linux-androideabi
- i686-linux-android
- x86_64-linux-android
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
components: rust-src
override: true
- name: Install zip
run: |
sudo apt update
sudo apt install zip
sudo apt install libc6
- name: Add Version Info
run: node ver.js
env:
NIGHTLY: ${{ github.event_name == 'push' }}
LEAD_VER: ${{ needs.tag.outputs.tag }}
- name: Package Stuff
run: |
sudo apt-get update
sudo apt-get -y install podman
RUSTFLAGS="" cargo install cross --force --git https://github.com/cross-rs/cross
cargo run --release
env:
TARGET: ${{ matrix.target }}
CROSS_CONFIG: ${{ github.workspace }}/Cross.toml
USE_CROSS: true
- name: Build leadman
run: |
cross +nightly build --target ${{ matrix.target }} --release
working-directory: leadman
- name: Publish Unix Bin
uses: shogo82148/actions-upload-release-asset@v1
with:
asset_path: ./leadman/target/${{ matrix.target }}/release/leadman
asset_name: leadman_${{ matrix.target }}
upload_url: ${{ needs.tag.outputs.upload }}
- name: Publish Leadman SO
uses: shogo82148/actions-upload-release-asset@v1
with:
asset_path: ./leadman/target/${{ matrix.target }}/release/libleadman_lib.so
asset_name: libleadman_${{ matrix.target }}.so
upload_url: ${{ needs.tag.outputs.upload }}
- name: Publish
uses: shogo82148/actions-upload-release-asset@v1
with:
asset_path: ./build.zip
asset_name: binaries_${{ matrix.target }}.zip
upload_url: ${{ needs.tag.outputs.upload }}
publish:
name: Undraft Release
needs: [tag, publish_cargo, build, build-cross]
runs-on: ubuntu-24.04
steps:
- name: Initial Commit
uses: actions/checkout@v4
- name: Publish Leadman Build
uses: shogo82148/actions-upload-release-asset@v1
with:
asset_path: ./leadman/build
asset_name: build
upload_url: ${{ needs.tag.outputs.upload }}
- name: Undraft release
uses: actions/github-script@v7
with:
script: |
github.rest.repos.updateRelease({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: ${{ needs.tag.outputs.id }},
draft: false
})