-
Notifications
You must be signed in to change notification settings - Fork 451
331 lines (285 loc) · 9.67 KB
/
release.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
name: releases
on:
push:
tags:
- v*
jobs:
build-bin-cross:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- mips-unknown-linux-musl
# - mipsel-unknown-linux-musl
- x86_64-unknown-linux-musl
# - i686-unknown-linux-musl
- aarch64-unknown-linux-musl
# - arm-unknown-linux-musleabi
# - armv7-unknown-linux-musleabihf
- x86_64-pc-windows-gnu
steps:
- name: checkout
uses: actions/checkout@v2
with:
submodules: true
- name: install rust toolchain
uses: hecrj/setup-rust-action@v1
with:
rust-version: stable
- name: install deps
run: |
sudo apt update && sudo apt install llvm-dev libclang-dev clang libssl-dev pkg-config protobuf-compiler make -y
- name: install cross
run: |
cargo install cross
- name: build
run: |
export CFG_COMMIT_HASH=`git log --pretty=format:'%h' -n 1`
export CFG_COMMIT_DATE=`git log --format="%ci" -n 1`
./scripts/build_cross.sh ${{ matrix.target }}
- name: rename and compress artifacts
if: ${{ matrix.target == 'x86_64-pc-windows-gnu' }}
run: |
mv target/${{ matrix.target }}/release/leaf.exe leaf-${{ matrix.target }}.exe
- name: rename and compress artifacts
if: ${{ matrix.target != 'x86_64-pc-windows-gnu' }}
run: |
mv target/${{ matrix.target }}/release/leaf leaf-${{ matrix.target }}
- name: upload assets
if: ${{ matrix.target == 'x86_64-pc-windows-gnu' }}
uses: actions/upload-artifact@v2
with:
name: leaf-${{ matrix.target }}.exe
path: leaf-${{ matrix.target }}.exe
- name: upload assets
if: ${{ matrix.target != 'x86_64-pc-windows-gnu' }}
uses: actions/upload-artifact@v2
with:
name: leaf-${{ matrix.target }}
path: leaf-${{ matrix.target }}
build-bin-local:
strategy:
matrix:
os: [macos-latest]
include:
- os: macos-latest
target: x86_64-apple-darwin
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v2
with:
submodules: true
- name: install rust toolchain
uses: hecrj/setup-rust-action@v1
with:
rust-version: nightly
- name: install llvm
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew install llvm protobuf
- name: build
run: |
export CFG_COMMIT_HASH=`git log --pretty=format:'%h' -n 1`
export CFG_COMMIT_DATE=`git log --format="%ci" -n 1`
cargo build --release --target ${{ matrix.target }} -p leaf-bin
- name: rename and compress artifacts
run: |
mv target/${{ matrix.target }}/release/leaf leaf-${{ matrix.target }}
- name: upload assets
uses: actions/upload-artifact@v2
with:
name: leaf-${{ matrix.target }}
path: leaf-${{ matrix.target }}
build-apple:
runs-on: macos-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
submodules: true
- name: install rust
uses: hecrj/setup-rust-action@v1
with:
rust-version: stable
- name: install toolchain
run: |
cargo install cbindgen
brew install llvm unzip protobuf
- name: build
run: |
./scripts/build_apple_xcframework.sh
- name: zip artifacts
run: |
mv target/apple/release/leaf.xcframework .
zip -r leaf.xcframework.zip leaf.xcframework
- name: upload assets
uses: actions/upload-artifact@v2
with:
name: leaf.xcframework.zip
path: leaf.xcframework.zip
build-android:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
submodules: true
- name: install rust
uses: hecrj/setup-rust-action@v1
with:
rust-version: stable
- name: install toolchain
run: |
cargo install cbindgen
apt update && apt install -y make llvm-dev libclang-dev clang pkg-config unzip curl default-jdk build-essential
export ANDROID_HOME=/tmp/Android/sdk
export NDK_HOME=/tmp/Android/sdk/ndk/25.2.9519653
export PATH=$ANDROID_HOME/cmdline-tools/bin:$PATH
cd /tmp/
curl -OL https://dl.google.com/android/repository/commandlinetools-linux-6858069_latest.zip
unzip commandlinetools-linux-6858069_latest.zip
mkdir -p $ANDROID_HOME
mv cmdline-tools $ANDROID_HOME
yes | sdkmanager --sdk_root=$ANDROID_HOME --licenses
sdkmanager --sdk_root=$ANDROID_HOME "ndk;25.2.9519653" "platforms;android-21"
- name: build
run: |
export ANDROID_HOME=/tmp/Android/sdk
export NDK_HOME=/tmp/Android/sdk/ndk/25.2.9519653
./scripts/build_android.sh
- name: zip artifacts
run: |
mv target/leaf-android-libs .
zip -r leaf-android-libs.zip leaf-android-libs
- name: upload assets
uses: actions/upload-artifact@v2
with:
name: leaf-android-libs.zip
path: leaf-android-libs.zip
create-release:
needs: [build-bin-cross, build-bin-local, build-apple, build-android]
runs-on: macos-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: create upload url file
run: |
echo -n "${{ steps.create_release.outputs.upload_url }}" > upload_url.txt
- name: persist upload url
uses: actions/upload-artifact@v2
with:
name: upload_url.txt
path: ./upload_url.txt
release-bin:
needs: [create-release]
runs-on: macos-latest
strategy:
matrix:
target:
- x86_64-apple-darwin
- mips-unknown-linux-musl
# - mipsel-unknown-linux-musl
- x86_64-unknown-linux-musl
# - i686-unknown-linux-musl
- aarch64-unknown-linux-musl
# - arm-unknown-linux-musleabi
# - armv7-unknown-linux-musleabihf
- x86_64-pc-windows-gnu
steps:
- name: download upload url
uses: actions/download-artifact@v2
with:
name: upload_url.txt
- name: get upload url
run: |
upload_url=`cat upload_url.txt`
echo "uploadurl=$upload_url" >> $GITHUB_ENV
- name: download asset
if: ${{ matrix.target != 'x86_64-pc-windows-gnu' }}
uses: actions/download-artifact@v2
with:
name: leaf-${{ matrix.target }}
- name: download asset
if: ${{ matrix.target == 'x86_64-pc-windows-gnu' }}
uses: actions/download-artifact@v2
with:
name: leaf-${{ matrix.target }}.exe
- name: zip artifacts
if: ${{ matrix.target != 'x86_64-pc-windows-gnu' }}
run: |
gzip leaf-${{ matrix.target }}
- name: zip artifacts
if: ${{ matrix.target == 'x86_64-pc-windows-gnu' }}
run: |
zip -9 leaf-${{ matrix.target }}.zip leaf-${{ matrix.target }}.exe
- name: upload asset
if: ${{ matrix.target != 'x86_64-pc-windows-gnu' }}
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ env.uploadurl }}
asset_path: ./leaf-${{ matrix.target }}.gz
asset_name: leaf-${{ matrix.target }}.gz
asset_content_type: application/octet-stream
- name: upload asset
if: ${{ matrix.target == 'x86_64-pc-windows-gnu' }}
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ env.uploadurl }}
asset_path: ./leaf-${{ matrix.target }}.zip
asset_name: leaf-${{ matrix.target }}.zip
asset_content_type: application/octet-stream
release-mobile-libs:
needs: [create-release]
runs-on: macos-latest
steps:
- name: download upload url
uses: actions/download-artifact@v2
with:
name: upload_url.txt
- name: get upload url
run: |
upload_url=`cat upload_url.txt`
echo "uploadurl=$upload_url" >> $GITHUB_ENV
- name: download asset
uses: actions/download-artifact@v2
with:
name: leaf.xcframework.zip
- name: download asset
uses: actions/download-artifact@v2
with:
name: leaf-android-libs.zip
- name: upload asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ env.uploadurl }}
asset_path: ./leaf.xcframework.zip
asset_name: leaf.xcframework.zip
asset_content_type: application/octet-stream
- name: upload asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ env.uploadurl }}
asset_path: ./leaf-android-libs.zip
asset_name: leaf-android-libs.zip
asset_content_type: application/octet-stream