-
Notifications
You must be signed in to change notification settings - Fork 122
310 lines (269 loc) · 12.8 KB
/
build-on-pull-request.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
name: Build on PR
on:
workflow_dispatch:
push:
branches:
- main
- release/*
jobs:
build-windows:
name: Build Windows Packages
runs-on: windows-2022
steps:
- name: Prepare VC++ Runtime
run: choco install -y vcredist2017
- name: Checkout Code
uses: actions/checkout@v4
with:
token: ${{ secrets.SACP_TOKEN }}
submodules: 'true'
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
- name: install
run: |
npm install -g npm@^9
npm install
- name: build
run: npm run build
- name: Init Props
run: |
$PRODUCT_NAME="Snapmaker Luban"
$PACKAGE_NAME="Snapmaker-luban"
$PACKAGE_VERSION= node -e "console.log(require('./src/package.json').version)"
$RELEASE="$PACKAGE_NAME-$PACKAGE_VERSION"
echo "SM_RELEASE=$RELEASE" >> $env:GITHUB_ENV
# ----------------------------------------------------------------
# Build Windows x64
# ----------------------------------------------------------------
- name: Build Windows x64 Binaries
run: |
npm run build:win-x64
dir ${{ github.workspace }}
dir ${{ github.workspace }}/output
- name: Upload artifacts Windows x64
uses: actions/upload-artifact@v4
with:
name: ${{ env.SM_RELEASE }}-win-x64.exe
path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-win-x64.exe
- name: Deploy Windows release
uses: WebFreak001/[email protected]
with:
overwrite: true
upload_url: https://uploads.github.com/repos/Snapmaker/Luban/releases/190586441/assets{?name,label}
release_id: 190586441
asset_path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-win-x64.exe
asset_name: ${{ env.SM_RELEASE }}-win-x64.exe
asset_content_type: application/octet-stream
max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted
ignore_hash: true
build-macos:
name: Build macOS Packages
# macos-11.7
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
token: ${{ secrets.SACP_TOKEN }}
submodules: 'true'
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
# install setuptools to reintroduce distutils missing in Python 3.12
# https://github.com/nodejs/node-gyp/issues/2869
- run: pip install setuptools
- run: npm install -g npm@^9
- run: npm install
- run: npm run build
- name: Init Props
run: |
PRODUCT_NAME="Snapmaker Luban"
PACKAGE_NAME="Snapmaker-luban"
PACKAGE_VERSION=`node -e "console.log(require('./src/package.json').version)"`
RELEASE=${PACKAGE_NAME}-${PACKAGE_VERSION}
echo "SM_RELEASE=$RELEASE" >> $GITHUB_ENV
# ----------------------------------------------------------------
# Build macOS x64 & arm64
# ----------------------------------------------------------------
- name: Build macOS Binaries
run: npm run build:mac
env:
CSC_LINK: ${{ secrets.CSC_LINK_MACOS }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD_MACOS }}
APPLEID: ${{ secrets.APPLEID }}
APPLEIDPASS: ${{ secrets.APPLEIDPASS }}
# Mac arm64
#dmg
- name: Upload artifacts mac-arm64-dmg
uses: actions/upload-artifact@v4
with:
name: ${{ env.SM_RELEASE }}-mac-arm64.dmg
path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-mac-arm64.dmg
- name: Deploy mac-arm64-dmg nightly
uses: WebFreak001/[email protected]
with:
upload_url: https://uploads.github.com/repos/Snapmaker/Luban/releases/190586441/assets{?name,label}
release_id: 190586441
asset_path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-mac-arm64.dmg
asset_name: ${{ env.SM_RELEASE }}-mac-arm64.dmg
asset_content_type: application/octet-stream
max_releases: 1
ignore_hash: true
# zip
- name: Upload artifacts mac-arm64-zip
uses: actions/upload-artifact@v4
with:
name: ${{ env.SM_RELEASE }}-mac-arm64.zip
path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-mac-arm64.zip
- name: Deploy mac-arm64-zip nightly
uses: WebFreak001/[email protected]
with:
upload_url: https://uploads.github.com/repos/Snapmaker/Luban/releases/190586441/assets{?name,label}
release_id: 190586441
asset_path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-mac-arm64.zip
asset_name: ${{ env.SM_RELEASE }}-mac-arm64.zip
asset_content_type: application/octet-stream
max_releases: 1
ignore_hash: true
# Mac x64
#dmg
- name: Upload artifacts mac-x64-dmg
uses: actions/upload-artifact@v4
with:
name: ${{ env.SM_RELEASE }}-mac-x64.dmg
path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-mac-x64.dmg
- name: Deploy mac-x64-dmg nightly
uses: WebFreak001/[email protected]
with:
upload_url: https://uploads.github.com/repos/Snapmaker/Luban/releases/190586441/assets{?name,label}
release_id: 190586441
asset_path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-mac-x64.dmg
asset_name: ${{ env.SM_RELEASE }}-mac-x64.dmg
asset_content_type: application/octet-stream
max_releases: 1
ignore_hash: true
# zip
- name: Upload artifacts mac-x64-zip
uses: actions/upload-artifact@v4
with:
name: ${{ env.SM_RELEASE }}-mac-x64.zip
path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-mac-x64.zip
- name: Deploy mac-x64-dmg nightly
uses: WebFreak001/[email protected]
with:
upload_url: https://uploads.github.com/repos/Snapmaker/Luban/releases/190586441/assets{?name,label}
release_id: 190586441
asset_path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-mac-x64.zip
asset_name: ${{ env.SM_RELEASE }}-mac-x64.zip
asset_content_type: application/octet-stream
max_releases: 1
ignore_hash: true
build-linux:
name: Build Linux Packages
# Ubuntu 20.04: ubuntu-latest or ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
token: ${{ secrets.SACP_TOKEN }}
submodules: 'true'
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install -g npm@^9
- run: npm install
- run: npm run build
# ----------------------------------------------------------------
# Build Linux x64
# ----------------------------------------------------------------
- name: Build Linux x64 Binaries
run: npm run build:linux-x64
- run: |
PRODUCT_NAME="Snapmaker Luban"
PACKAGE_NAME="Snapmaker-luban"
PACKAGE_VERSION=`node -e "console.log(require('./src/package.json').version)"`
RELEASE=${PACKAGE_NAME}-${PACKAGE_VERSION}
echo "SM_RELEASE=$RELEASE" >> $GITHUB_ENV
ln -sf ./output/linux-unpacked "${RELEASE}-linux-x64"
tar zcfh "./output/${RELEASE}-linux-x64.tar.gz" "${RELEASE}-linux-x64"
rm -f "${RELEASE}-linux-x64"
# amd64-deb
- name: Upload artifacts linux-deb
uses: actions/upload-artifact@v4
with:
name: ${{ env.SM_RELEASE }}-linux-amd64.deb
path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-linux-amd64.deb
- name: Deploy Linux-deb nightly
uses: WebFreak001/[email protected]
with:
upload_url: https://uploads.github.com/repos/Snapmaker/Luban/releases/190586441/assets{?name,label}
release_id: 190586441
asset_path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-linux-amd64.deb
asset_name: ${{ env.SM_RELEASE }}-linux-amd64.deb
asset_content_type: application/octet-stream
max_releases: 1
ignore_hash: true
# x86_64.rpm
- name: Upload artifacts linux-rpm
uses: actions/upload-artifact@v4
with:
name: ${{ env.SM_RELEASE }}-linux.x86_64.rpm
path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-linux.x86_64.rpm
- name: Deploy Linux-rpm nightly
uses: WebFreak001/[email protected]
with:
upload_url: https://uploads.github.com/repos/Snapmaker/Luban/releases/190586441/assets{?name,label}
release_id: 190586441
asset_path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-linux.x86_64.rpm
asset_name: ${{ env.SM_RELEASE }}-linux.x86_64.rpm
asset_content_type: application/octet-stream
max_releases: 1
ignore_hash: true
# x64.tar.gz
- name: Upload artifacts linux-tar
uses: actions/upload-artifact@v4
with:
name: ${{ env.SM_RELEASE }}-linux-x64.tar.gz
path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-linux-x64.tar.gz
- name: Deploy Linux-tar nightly
uses: WebFreak001/[email protected]
with:
upload_url: https://uploads.github.com/repos/Snapmaker/Luban/releases/190586441/assets{?name,label}
release_id: 190586441
asset_path: ${{ github.workspace }}/output/${{ env.SM_RELEASE }}-linux-x64.tar.gz
asset_name: ${{ env.SM_RELEASE }}-linux-x64.tar.gz
asset_content_type: application/octet-stream
max_releases: 1
ignore_hash: true