-
Notifications
You must be signed in to change notification settings - Fork 2.5k
296 lines (273 loc) · 8.53 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
name: publish
on:
workflow_dispatch:
inputs:
tag_name:
description: 'tag name'
required: true
jobs:
android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install NDK
run: |
cd ~
wget -O NDK -q https://dl.google.com/android/repository/android-ndk-r21b-linux-x86_64.zip
sudo apt install unzip -y
unzip -q NDK
ANDROID_NDK_HOME=$(pwd)/android-ndk-r21b
- name: Build
run: |
cd build
./make_android_lua54.sh
./make_android_lua53.sh
- name: Upload
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_lua54/**/*
name: plugin_lua54
- name: Upload53
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_lua53/**/*
name: plugin_lua53
ohos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install NDK
run: |
cd ~
cd ~
curl -O https://repo.huaweicloud.com/harmonyos/os/4.1-Release/ohos-sdk-windows_linux-public.tar.gz
tar xvfz ohos-sdk-windows_linux-public.tar.gz
cd ohos-sdk/linux
unzip -o -d ./ native-linux-x64-4.1.7.5-Release.zip
- name: Build
run: |
cd build
chmod +x make_ohos_lua5*.sh
OHOS_NDK_HOME=~/ohos-sdk/linux/native ./make_ohos_lua54.sh
OHOS_NDK_HOME=~/ohos-sdk/linux/native ./make_ohos_lua53.sh
- name: Upload
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_lua54/**/*
name: plugin_lua54
- name: Upload53
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_lua53/**/*
name: plugin_lua53
android_luajit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install NDK
run: |
cd ~
wget -O NDK -q https://dl.google.com/android/repository/android-ndk-r15c-linux-x86_64.zip
sudo apt install unzip -y
unzip -q NDK
ANDROID_NDK_HOME=$(pwd)/android-ndk-r15c
- name: Build
run: |
cd build
sudo apt install gcc-multilib libncurses5 -y
./make_android_luajit_arm64.sh
- name: UploadJit
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_luajit/**/*
name: plugin_luajit
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: |
cd build
./make_linux_lua54.sh
./make_linux64_lua53.sh
./make_linux64_luajit.sh
- name: Upload
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_lua54/**/*
name: plugin_lua54
- name: Upload53
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_lua53/**/*
name: plugin_lua53
- name: UploadJit
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_luajit/**/*
name: plugin_luajit
ios:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: |
cd build
./make_ios_lua54.sh
./make_ios_lua53.sh
./make_ios_luajit.sh
- name: Upload
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_lua54/**/*
name: plugin_lua54
- name: Upload53
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_lua53/**/*
name: plugin_lua53
- name: UploadJit
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_luajit/**/*
name: plugin_luajit
osx:
runs-on: macos-11
steps:
- uses: actions/checkout@v2
- name: Build
run: |
cd build
./make_osx_lua54.sh
./make_osx_lua53.sh
./make_osx_luajit.sh
./make_osx_silicon_lua53.sh
./make_osx_silicon_lua54.sh
- name: Upload
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_lua54/**/*
name: plugin_lua54
- name: Upload53
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_lua53/**/*
name: plugin_lua53
- name: UploadJit
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_luajit/**/*
name: plugin_luajit
windows:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Insatll MSVC
uses: microsoft/[email protected]
- name: Build
run: |
cd build
.\make_win_lua54.bat
.\make_uwp_lua54.bat
.\make_win32_lua53.bat
.\make_win64_lua53.bat
.\make_uwp.bat
- uses: ilammy/msvc-dev-cmd@v1
- name: Build Luajit
run: |
cd build
.\make_win64_luajit.bat
- name: Upload
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_lua54/**/*
name: plugin_lua54
- name: Upload53
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_lua53/**/*
name: plugin_lua53
- name: UploadJit
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_luajit/**/*
name: plugin_luajit
windows-luajit-32:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Insatll MSVC
uses: microsoft/[email protected]
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: x86
- name: Build Luajit
run: |
cd build
.\make_win32_luajit.bat
- name: UploadJit
uses: actions/upload-artifact@v2
with:
path: ./build/plugin_luajit/**/*
name: plugin_luajit
publish:
runs-on: ubuntu-latest
needs: [windows,osx,ios,android,windows-luajit-32,ohos,android_luajit,linux]
steps:
- uses: actions/[email protected]
with:
name: plugin_luajit
path: plugin_luajit/
- uses: actions/[email protected]
with:
name: plugin_lua53
path: plugin_lua53/
- uses: actions/[email protected]
with:
name: plugin_lua54
path: plugin_lua54/
- name: Create Release Asset
run: |
cd plugin_luajit/ && tar cvfz ../luajit_${{ github.event.inputs.tag_name }}.tgz Plugins && cd -
cd plugin_lua53/ && tar cvfz ../lua53_${{ github.event.inputs.tag_name }}.tgz Plugins && cd -
cd plugin_lua54/ && tar cvfz ../lua54_${{ github.event.inputs.tag_name }}.tgz Plugins && cd -
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.event.inputs.tag_name }}
release_name: Tag:${{ github.event.inputs.tag_name }}
draft: false
prerelease: false
- name: Upload luajit Plugins
#id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./luajit_${{ github.event.inputs.tag_name }}.tgz
asset_name: luajit_${{ github.event.inputs.tag_name }}.tgz
asset_content_type: application/tgz
- name: Upload lua53 Plugins
#id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./lua53_${{ github.event.inputs.tag_name }}.tgz
asset_name: lua53_${{ github.event.inputs.tag_name }}.tgz
asset_content_type: application/tgz
- name: Upload lua54 Plugins
#id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./lua54_${{ github.event.inputs.tag_name }}.tgz
asset_name: lua54_${{ github.event.inputs.tag_name }}.tgz
asset_content_type: application/tgz