-
Notifications
You must be signed in to change notification settings - Fork 18
290 lines (237 loc) · 7.32 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
name: Release
on:
release:
types: [published]
workflow_dispatch:
permissions:
contents: write
jobs:
#####################
# The docker builds #
#####################
docker-build-base:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build Base Docker Image
uses: ./.github/actions/docker-build-base
docker-build:
runs-on: ubuntu-latest
needs: docker-build-base
strategy:
matrix:
include:
- name: console.wasm.gz
target: scratch_console
- name: observatory.wasm.gz
target: scratch_observatory
- name: mission_control.wasm.gz
target: scratch_mission_control
- name: satellite.wasm.gz
target: scratch_satellite
- name: orbiter.wasm.gz
target: scratch_orbiter
steps:
- uses: actions/checkout@v4
- name: Set up docker buildx
uses: docker/setup-buildx-action@v3
- name: Build ${{ matrix.name }}
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile
cache-from: type=gha,scope=cached-stage
# Exports the artefacts from the final stage
outputs: ./out
target: ${{ matrix.target }}
- run: mv out/${{ matrix.name }} ${{ matrix.name }}
- run: sha256sum ./${{ matrix.name }} > ${{ matrix.name }}.sha256
- name: 'Upload ${{ matrix.name }}'
uses: actions/upload-artifact@v4
with:
# name is the name used to display and retrieve the artifact
name: ${{ matrix.name }}
# path is the name used as the file to upload and the name of the
# downloaded file
path: ./${{ matrix.name }}
- name: 'Upload ${{ matrix.name }}.sha256'
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}.sha256
path: ./${{ matrix.name }}.sha256
metadata:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build metadata
run: bash .github/scripts/metadata
env:
CANISTERS: console,observatory,mission_control,satellite,orbiter
- name: Upload metadata
uses: actions/upload-artifact@v4
with:
# name is the name used to display and retrieve the artifact
name: metadata.json
# path is the name used as the file to upload and the name of the
# downloaded file
path: ./metadata.json
candid:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: console.did
target: console
- name: observatory.did
target: observatory
- name: mission_control.did
target: mission_control
- name: satellite.did
target: satellite
- name: orbiter.did
target: orbiter
steps:
- uses: actions/checkout@v4
- name: 'Copy ${{ matrix.name }}'
run: bash .github/scripts/candid
env:
CANISTER: ${{ matrix.target }}
- name: 'Upload ${{ matrix.name }}'
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}
path: ./${{ matrix.name }}
candid_extension:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: satellite_extension.did
target: satellite
custom_did_file: satellite_extension.did
steps:
- uses: actions/checkout@v4
- name: 'Copy ${{ matrix.name }}'
run: bash .github/scripts/candid
env:
CANISTER: ${{ matrix.target }}
CUSTOM_DID_FILE: ${{ matrix.custom_did_file }}
- name: 'Upload ${{ matrix.name }}'
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}
path: ./${{ matrix.name }}
release:
runs-on: ubuntu-latest
needs: ['docker-build', 'metadata', 'candid', 'candid_extension']
steps:
- uses: actions/checkout@v4
- name: Download console.wasm.gz
uses: actions/download-artifact@v4
with:
name: console.wasm.gz
path: .
- name: Download observatory.wasm.gz
uses: actions/download-artifact@v4
with:
name: observatory.wasm.gz
path: .
- name: Download mission_control.wasm.gz
uses: actions/download-artifact@v4
with:
name: mission_control.wasm.gz
path: .
- name: Download satellite.wasm.gz
uses: actions/download-artifact@v4
with:
name: satellite.wasm.gz
path: .
- name: Download orbiter.wasm.gz
uses: actions/download-artifact@v4
with:
name: orbiter.wasm.gz
path: .
- name: Download console.did
uses: actions/download-artifact@v4
with:
name: console.did
path: .
- name: Download observatory.did
uses: actions/download-artifact@v4
with:
name: observatory.did
path: .
- name: Download mission_control.did
uses: actions/download-artifact@v4
with:
name: mission_control.did
path: .
- name: Download satellite.did
uses: actions/download-artifact@v4
with:
name: satellite.did
path: .
- name: Download satellite_extension.did
uses: actions/download-artifact@v4
with:
name: satellite_extension.did
path: .
- name: Download orbiter.did
uses: actions/download-artifact@v4
with:
name: orbiter.did
path: .
- name: Download console.wasm.gz.sha256
uses: actions/download-artifact@v4
with:
name: console.wasm.gz.sha256
path: .
- name: Download observatory.wasm.gz.sha256
uses: actions/download-artifact@v4
with:
name: observatory.wasm.gz.sha256
path: .
- name: Download mission_control.wasm.gz.sha256
uses: actions/download-artifact@v4
with:
name: mission_control.wasm.gz.sha256
path: .
- name: Download satellite.wasm.gz.sha256
uses: actions/download-artifact@v4
with:
name: satellite.wasm.gz.sha256
path: .
- name: Download orbiter.wasm.gz.sha256
uses: actions/download-artifact@v4
with:
name: orbiter.wasm.gz.sha256
path: .
- name: Download metadata.json
uses: actions/download-artifact@v4
with:
name: metadata.json
path: .
- name: Combine Checksums
run: cat *.sha256 > checksums.txt
- name: Prepare canisters
run: bash .github/scripts/prepare
env:
CANISTERS: console,observatory,mission_control,satellite,orbiter
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
./console*.wasm.gz
./observatory*.wasm.gz
./orbiter*.wasm.gz
./mission_control*.wasm.gz
./satellite*.wasm.gz
./console*.did
./observatory*.did
./mission_control*.did
./satellite*.did
./orbiter*.did
./metadata.json
./checksums.txt