This repository was archived by the owner on Mar 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
319 lines (273 loc) · 10.4 KB
/
build_and_test.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
311
312
313
314
315
316
317
318
319
name: Build, Test, Clippy
on:
workflow_dispatch:
push:
branches: [ master ]
tags:
- '[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
WORKER_BIN: integritee-service
CLIENT_BIN: integritee-cli
ENCLAVE_BIN: enclave.signed.so
LOG_DIR: log
BUILD_CONTAINER_NAME: integritee_worker_enclave_test
jobs:
cancel_previous_runs:
name: Cancel Previous Runs
runs-on: ubuntu-20.04
steps:
- uses: styfle/cancel-workflow-action@0.4.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
buildkitd-flags: --debug
- name: Build Enclave Test Image
env:
DOCKER_BUILDKIT: 1
run: docker build -t integritee-worker-enclave-test-${{ github.sha }} --target enclave-test -f build.Dockerfile .
- name: Test Enclave # cargo test is not supported, see: https://github.com/apache/incubator-teaclave-sgx-sdk/issues/232
env:
COINMARKETCAP_KEY: ${{ secrets.COINMARKETCAP_KEY }}
run: docker run -e COINMARKETCAP_KEY=${{ env.COINMARKETCAP_KEY }} --name ${{ env.BUILD_CONTAINER_NAME }} integritee-worker-enclave-test-${{ github.sha }}
- name: Build Cargo Test Image
env:
DOCKER_BUILDKIT: 1
run: docker build -t integritee-worker-ctest-${{ github.sha }} --target cargo-test -f build.Dockerfile .
- name: Run Cargo Test
env:
COINMARKETCAP_KEY: ${{ secrets.COINMARKETCAP_KEY }}
run: docker run -e COINMARKETCAP_KEY=${{ env.COINMARKETCAP_KEY }} --rm integritee-worker-ctest-${{ github.sha }}
- name: Build Deployable Image
env:
DOCKER_BUILDKIT: 1
run: docker build --output=type=tar,dest=/tmp/integritee-worker.tar --target=deployed-worker -f build.Dockerfile .
- name: Copy artifacts from container
run: |
docker cp ${{ env.BUILD_CONTAINER_NAME }}:/root/work/worker/bin/${{ env.WORKER_BIN }} .
docker cp ${{ env.BUILD_CONTAINER_NAME }}:/root/work/worker/bin/${{ env.CLIENT_BIN }} .
docker cp ${{ env.BUILD_CONTAINER_NAME }}:/root/work/worker/bin/${{ env.ENCLAVE_BIN }} .
- name: Upload worker
uses: actions/upload-artifact@v2
with:
name: integritee-worker-${{ github.sha }}
path: ${{ env.WORKER_BIN }}
- name: Upload client
uses: actions/upload-artifact@v2
with:
name: integritee-client-${{ github.sha }}
path: ${{ env.CLIENT_BIN }}
- name: Upload enclave
uses: actions/upload-artifact@v2
with:
name: enclave-signed-${{ github.sha }}
path: ${{ env.ENCLAVE_BIN }}
- name: Upload deployable image
uses: actions/upload-artifact@v2
with:
name: integritee-worker-image-${{ github.sha }}
path: /tmp/integritee-worker.tar
clippy:
runs-on: ubuntu-latest
container: "integritee/integritee-dev:0.1.9"
steps:
- uses: actions/checkout@v3
- name: init rust
# enclave is not in the same workspace
run: rustup show && cd enclave-runtime && rustup show
- name: Worker & Client
run: cargo clippy --all --exclude test-sgx-build -- -D warnings
- name: Enclave # Enclave is separate as it's not in the workspace
run: cd enclave-runtime && cargo clippy -- -D warnings
- name: Fail-fast; cancel other jobs
if: failure()
uses: andymckay/cancel-action@0.2
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: init rust
run: rustup show
- name: Worker & Client
run: cargo fmt --all -- --check
- name: Enclave # Enclave is separate as it's not in the workspace
run: cd enclave-runtime && cargo fmt --all -- --check
- name: Fail-fast; cancel other jobs
if: failure()
uses: andymckay/cancel-action@0.2
integration-tests:
runs-on: ubuntu-latest
needs: build-test
container: "integritee/integritee-dev:0.1.9"
strategy:
fail-fast: false
matrix:
test: [T1]
include:
- test: T1
demo_name: t1_demo_teeracle
demo_script: teeracle1.sh
env:
BIN_DIR: bin
COINMARKETCAP_KEY: ${{ secrets.COINMARKETCAP_KEY }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.7'
- name: Download Worker
uses: actions/download-artifact@v2
with:
name: integritee-worker-${{ github.sha }}
path: ${{ env.BIN_DIR }}
- name: Download Client
uses: actions/download-artifact@v2
with:
name: integritee-client-${{ github.sha }}
path: ${{ env.BIN_DIR }}
- name: Download Enclave
uses: actions/download-artifact@v2
with:
name: enclave-signed-${{ github.sha }}
path: ${{ env.BIN_DIR }}
# If you want to debug ci and you don't want to build the binaries, you can replace the downloads above with
# the actions below to download binaries from an earlier run.
# - name: Download Worker
# uses: dawidd6/action-download-artifact@v2
# with:
# github_token: ${{secrets.GITHUB_TOKEN}}
# workflow: build_and_test.yml
# run_id: 1033249727
# name: integritee-worker-da8d4b442d3f2b09dbafb097d4d7a1bce409d518
# path: ${{ env.BIN_DIR }}
#
# - name: Download Client
# uses: dawidd6/action-download-artifact@v2
# with:
# github_token: ${{secrets.GITHUB_TOKEN}}
# workflow: build_and_test.yml
# run_id: 1033249727
# name: integritee-client-da8d4b442d3f2b09dbafb097d4d7a1bce409d518
# path: ${{ env.BIN_DIR }}
#
# - name: Download Enclave
# uses: dawidd6/action-download-artifact@v2
# with:
# github_token: ${{secrets.GITHUB_TOKEN}}
# workflow: build_and_test.yml
# run_id: 1033249727
# name: enclave-signed-da8d4b442d3f2b09dbafb097d4d7a1bce409d518
# path: ${{ env.BIN_DIR }}
- name: Download integritee-node
uses: dawidd6/action-download-artifact@v2
with:
github_token: ${{secrets.GITHUB_TOKEN}}
workflow: ci.yml
name: integritee-node-dev-2d516d629404ea13ebab1498807467d2fe5e3816
# in fact this action should download the latest artifact, but sometimes fails. Then we need to
# set the `run_id` to force a download of an updated binary.
run_id: 2624145209
path: node
repo: integritee-network/integritee-node
- name: Prepare working directory
run: |
mkdir -p ${{ env.LOG_DIR}}
chmod +x node/integritee-node
cd ${{ env.BIN_DIR }}
chmod +x ${{ env.WORKER_BIN }}
chmod +x ${{ env.CLIENT_BIN }}
chmod +x ${{ env.ENCLAVE_BIN }}
- name: "Setup Keys"
env:
KEY: ${{ secrets.IAS_PRIMARY_KEY }}
SPID: ${{ secrets.IAS_SPID }}
TLS_CERTIFICATE: ${{ secrets.TLS_WS_SERVER_CERTIFICATE }}
TLS_PRIVATE_KEY: ${{ secrets.TLS_WS_SERVER_PRIVATE_KEY }}
run: |
cd ${{ env.BIN_DIR }}
echo "${{ env.KEY }}" > key.txt
echo "${{ env.SPID }}" > spid.txt
echo "${{ env.TLS_CERTIFICATE }}" > end.fullchain
echo "${{ env.TLS_PRIVATE_KEY }}" > end.rsa
chmod 644 end.fullchain
chmod 644 end.rsa
- name: Run local setup
# * `set -eo pipefail` is needed to return an error even if piped to `tee`.
shell: bash --noprofile --norc -eo pipefail {0}
run: |
touch ${{ env.LOG_DIR }}/local-setup.log
./local-setup/launch.py local-setup/github-action-config.json 2>&1 | tee -i ${{ env.LOG_DIR }}/local-setup.log &
sleep 150
- name: ${{ matrix.demo_name }}
# * the change the symbolic link which points to the target/release... folder.
# * need overwrite default shell to bash to get access to the `source` cmd.
shell: bash --noprofile --norc -eo pipefail {0}
run: |
source ./scripts/init_env.sh && ./scripts/${{ matrix.demo_script }}
- name: Upload logs
continue-on-error: true
if: always()
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.test }}_logs
path: ${{ env.LOG_DIR }}
release:
name: Draft Release
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
needs: [build-test, integration-tests]
outputs:
release_url: ${{ steps.create-release.outputs.html_url }}
asset_upload_url: ${{ steps.create-release.outputs.upload_url }}
steps:
- uses: actions/checkout@v3
- name: Download Integritee Service
uses: actions/download-artifact@v2
with:
name: integritee-worker-${{ github.sha }}
path: integritee-worker-tmp
- name: Download Integritee Client
uses: actions/download-artifact@v2
with:
name: integritee-client-${{ github.sha }}
path: integritee-client-tmp
- name: Download Enclave Signed
uses: actions/download-artifact@v2
with:
name: enclave-signed-${{ github.sha }}
path: enclave-signed-tmp
- name: Move service binaries
run: mv integritee-worker-tmp/integritee-service ./integritee-demo-validateer
- name: Move service client binaries
run: mv integritee-client-tmp/integritee-cli ./integritee-client
- name: Move service client binaries
run: mv enclave-signed-tmp/enclave.signed.so ./enclave.signed.so
- name: Create required package.json
run: test -f package.json || echo '{}' >package.json
- name: Changelog
uses: scottbrenner/generate-changelog-action@master
id: Changelog
- name: Display structure of downloaded files
run: ls -R
working-directory: .
- name: Release
id: create-release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
body: |
${{ steps.Changelog.outputs.changelog }}
draft: true
files: |
integritee-client
integritee-demo-validateer
enclave.signed.so