-
Notifications
You must be signed in to change notification settings - Fork 35
268 lines (238 loc) · 8.17 KB
/
build-deploy.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
name: Build & deploy server
on:
push:
branches-ignore:
- '**'
tags:
- 'dev/*.*-dev*'
- 'rc/*.*-rc*'
- 'release/*.*'
jobs:
build-windows:
name: Build windows release
runs-on: windows-2019
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Extract version
id: version
shell: bash
run: |
TAG=${GITHUB_REF/refs\/tags\//}
echo "BRANCH=${TAG/\/*}" >> $GITHUB_OUTPUT
echo "VERSION=${TAG/*\/}" >> $GITHUB_OUTPUT
- name: Build
shell: cmd
run: |
cd server
build.bat 0 %VERSION%
env:
VERSION: ${{ steps.version.outputs.VERSION }}
- name: Copy files
shell: cmd
run: |
cd server
mkdir upload\modules\js-module
mkdir debug
copy dist\js-module.dll upload\modules\js-module
copy dist\libnode.dll upload\modules\js-module
copy dist\js-module.pdb debug
- uses: actions/upload-artifact@v3
with:
name: js-module-windows
path: ./server/upload/
- uses: actions/upload-artifact@v3
with:
name: js-module-windows-debug
path: ./server/debug
build-linux:
name: Build linux release
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Extract version
id: version
shell: bash
run: |
TAG=${GITHUB_REF/refs\/tags\//}
echo "BRANCH=${TAG/\/*}" >> $GITHUB_OUTPUT
echo "VERSION=${TAG/*\/}" >> $GITHUB_OUTPUT
cd shared/deps/cpp-sdk
echo "SDK_COMMIT=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Build
run: |
cd server
./build.sh %VERSION%
env:
VERSION: ${{ steps.version.outputs.VERSION }}
- name: Copy files
run: |
cd server
mkdir -p upload/modules/js-module
cp ./dist/libjs-module.so ./upload/modules/js-module
cp ./dist/libnode.so.108 ./upload/modules/js-module
echo ${{ steps.version.outputs.SDK_COMMIT }} >> ./upload/sdk.version
- uses: actions/upload-artifact@v3
with:
name: js-module-linux
path: ./server/upload/
deploy-cdn:
name: Deploy release to alt:V CDN
runs-on: ubuntu-20.04
needs: [build-linux, build-windows]
steps:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Cache node_modules
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}
- name: Download windows artifacts
uses: actions/download-artifact@v3
with:
name: js-module-windows
path: dist-windows
- name: Download linux artifacts
uses: actions/download-artifact@v3
with:
name: js-module-linux
path: dist-linux
- name: Extract version
id: version
shell: bash
run: |
TAG=${GITHUB_REF/refs\/tags\//}
echo "BRANCH=${TAG/\/*}" >> $GITHUB_OUTPUT
echo "VERSION=${TAG/*\/}" >> $GITHUB_OUTPUT
echo "SDK_VERSION=$(cat dist-linux/sdk.version)" >> $GITHUB_OUTPUT
rm dist-linux/sdk.version
- name: Install upload tool
run: npm i @altmp/upload-tool@latest
- name: Deploy windows artifacts to cdn
run: npx alt-upload dist-windows js-module/$BRANCH/x64_win32 $VERSION $SDK_VERSION
env:
AWS_KEY_ID: ${{ secrets.AWS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_BUCKET: ${{ secrets.AWS_BUCKET }}
AWS_ENDPOINT: ${{ secrets.AWS_ENDPOINT }}
CF_CACHE_PURGE_TOKEN: ${{ secrets.CF_CACHE_PURGE_TOKEN }}
CF_CACHE_ZONE_ID: ${{ secrets.CF_CACHE_ZONE_ID }}
CF_CACHE_PURGE_URL: ${{ secrets.CF_CACHE_PURGE_URL }}
BRANCH: ${{ steps.version.outputs.BRANCH }}
VERSION: ${{ steps.version.outputs.VERSION }}
SDK_VERSION: ${{ steps.version.outputs.SDK_VERSION }}
- name: Deploy linux artifacts to cdn
run: npx alt-upload dist-linux js-module/$BRANCH/x64_linux $VERSION $SDK_VERSION
env:
AWS_KEY_ID: ${{ secrets.AWS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_BUCKET: ${{ secrets.AWS_BUCKET }}
AWS_ENDPOINT: ${{ secrets.AWS_ENDPOINT }}
CF_CACHE_PURGE_TOKEN: ${{ secrets.CF_CACHE_PURGE_TOKEN }}
CF_CACHE_ZONE_ID: ${{ secrets.CF_CACHE_ZONE_ID }}
CF_CACHE_PURGE_URL: ${{ secrets.CF_CACHE_PURGE_URL }}
BRANCH: ${{ steps.version.outputs.BRANCH }}
VERSION: ${{ steps.version.outputs.VERSION }}
SDK_VERSION: ${{ steps.version.outputs.SDK_VERSION }}
build-docker:
name: Trigger Docker image build
runs-on: ubuntu-latest
needs: [deploy-cdn]
steps:
- name: Get Token
id: get_workflow_token
uses: peter-murray/workflow-application-token-action@v2
with:
application_id: ${{ secrets.CI_APP_ID }}
application_private_key: ${{ secrets.CI_APP_PRIVATE_KEY }}
permissions: "actions:write"
organization: altmp
- name: Trigger Docker build
uses: benc-uk/workflow-dispatch@v1
with:
workflow: build.yml
ref: main
repo: altmp/altv-docker
token: ${{ steps.get_workflow_token.outputs.token }}
create-release:
name: Create GitHub Release
runs-on: ubuntu-20.04
needs: [build-linux, build-windows]
steps:
- name: Download windows artifacts
uses: actions/download-artifact@v3
with:
name: js-module-windows
path: dist-windows
- name: Download windows debug artifacts
uses: actions/download-artifact@v3
with:
name: js-module-windows-debug
path: dist-windows
- name: Download linux artifacts
uses: actions/download-artifact@v3
with:
name: js-module-linux
path: dist-linux
- name: Extract version
id: version
shell: bash
run: |
TAG=${GITHUB_REF/refs\/tags\//}
echo "BRANCH=${TAG/\/*}" >> $GITHUB_OUTPUT
echo "VERSION=${TAG/*\/}" >> $GITHUB_OUTPUT
echo "SDK_COMMIT=$(cat dist-linux/sdk.version)" >> $GITHUB_OUTPUT
rm dist-linux/sdk.version
- name: Zip artifacts
run: |
zip -r -j js-module-windows dist-windows
zip -r -j js-module-linux dist-linux
- 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 ${{ steps.version.outputs.VERSION }}
body: |
SDK version: [${{ steps.version.outputs.SDK_COMMIT }}](https://github.com/altmp/cpp-sdk/commit/${{ steps.version.outputs.SDK_COMMIT }})
- name: Upload windows artifacts
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./js-module-windows.zip
asset_name: js-module-windows.zip
asset_content_type: application/zip
- name: Upload linux artifacts
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./js-module-linux.zip
asset_name: js-module-linux.zip
asset_content_type: application/zip
delete-artifacts:
name: Delete artifacts
runs-on: ubuntu-20.04
needs: [ create-release, deploy-cdn ]
if: ${{ always() }}
steps:
- name: Delete artifacts
uses: geekyeggo/delete-artifact@v2
with:
name: |
js-module-linux
js-module-windows
js-module-windows-debug