forked from Tencent/xLua
-
Notifications
You must be signed in to change notification settings - Fork 1
251 lines (231 loc) · 7.14 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
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-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
./make_android_lua54.sh
./make_android_lua53.sh
sudo apt install gcc-multilib
./make_android_luajit_arm64.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
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-2016
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-2016
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]
steps:
- uses: actions/download-artifact@v1
with:
name: plugin_luajit
path: plugin_luajit/
- uses: actions/download-artifact@v1
with:
name: plugin_lua53
path: plugin_lua53/
- uses: actions/download-artifact@v1
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