-
Notifications
You must be signed in to change notification settings - Fork 253
508 lines (467 loc) · 16.7 KB
/
Copy pathrelease.yml
File metadata and controls
508 lines (467 loc) · 16.7 KB
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
name: Release
on:
push:
tags:
- "ccf-[567].*"
workflow_dispatch:
inputs:
dry_run:
description: "Run the full pipeline without creating a GitHub release"
type: boolean
default: true
permissions: read-all
env:
IMAGE: mcr.microsoft.com/azurelinux/base/core:3.0
jobs:
make_sbom:
name: SBOM Generation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 1
- name: "Install SBOM tool"
run: |
set -ex
curl -Lo sbom-tool https://github.com/microsoft/sbom-tool/releases/latest/download/sbom-tool-linux-x64 > sbom-tool
chmod +x sbom-tool
shell: bash
- name: "Produce SBOM"
run: |
set -ex
CCF_VERSION=${{ github.ref_name }}
CCF_VERSION=${CCF_VERSION#ccf-}
./sbom-tool generate -b . -bc . -pn CCF -ps Microsoft -nsb https://sbom.microsoft -pv $CCF_VERSION -V Error
shell: bash
- name: "Upload SBOM"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: sbom
path: _manifest/spdx_2.2/*
release_notes:
name: Release Notes
if: ${{ !inputs.dry_run }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 1
- name: "Check Release Notes"
run: |
set -ex
scripts/extract-release-notes.py --target-git-version
shell: bash
- name: "Produce Release Notes"
run: |
set -ex
set -o pipefail
./scripts/extract-release-notes.py --target-git-version --describe-path-changes "./samples/constitution" | tee rel-notes.md
- name: "Upload Release Notes"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: relnotes
path: rel-notes.md
image_digest:
name: Snapshot Build Image Digest and SOURCE_DATE_EPOCH
runs-on:
[
self-hosted,
1ES.Pool=gha-vmss-d16av6-ci,
"JobId=release_image_digest-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}",
]
outputs:
image_digest: ${{ steps.digest.outputs.digest }}
SOURCE_DATE_EPOCH: ${{ steps.set_epoch.outputs.SOURCE_DATE_EPOCH }}
steps:
- id: digest
run: |
set -ex
docker pull $IMAGE
echo "digest=$(docker inspect --format='{{index .RepoDigests 0}}' $IMAGE)" >> "$GITHUB_OUTPUT"
- name: Set SOURCE_DATE_EPOCH
id: set_epoch
run: |
set -ex
epoch=$(date +%s)
echo "SOURCE_DATE_EPOCH=$epoch" >> $GITHUB_OUTPUT
echo "$epoch"
build_release:
name: Build Release
needs: image_digest
runs-on:
[
self-hosted,
1ES.Pool=gha-vmss-d16av6-ci,
"JobId=release_build_release-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}",
]
container:
image: ${{ needs.image_digest.outputs.image_digest }}
options: "--user root --publish-all --cap-add NET_ADMIN --cap-add NET_RAW --cap-add SYS_PTRACE --sysctl net.ipv6.conf.all.disable_ipv6=0 --sysctl net.ipv6.conf.default.disable_ipv6=0 --sysctl net.ipv6.conf.lo.disable_ipv6=0"
steps:
- name: "Set SOURCE_DATE_EPOCH"
shell: bash
run: |
set -ex
echo "Setting SOURCE_DATE_EPOCH env variable to ${{ needs.image_digest.outputs.SOURCE_DATE_EPOCH }}"
echo "SOURCE_DATE_EPOCH=${{ needs.image_digest.outputs.SOURCE_DATE_EPOCH }}" >> $GITHUB_ENV
- name: "Checkout dependencies"
shell: bash
run: |
set -ex
gpg --import /etc/pki/rpm-gpg/MICROSOFT-RPM-GPG-KEY
tdnf --snapshottime=$SOURCE_DATE_EPOCH -y update
tdnf --snapshottime=$SOURCE_DATE_EPOCH -y install ca-certificates git
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
- name: "Install dependencies"
shell: bash
run: |
set -ex
./scripts/setup-ci.sh
- name: "Build Release"
shell: bash
run: |
set -ex
set -o pipefail
git config --global --add safe.directory /__w/CCF/CCF
# Ensure all files have timestamps strictly after SOURCE_DATE_EPOCH,
# otherwise rpmbuild will not clamp to SOURCE_DATE_EPOCH and the build
# will not be reproducible.
find . -type f -exec touch {} +
mkdir build
cd build
cmake -GNinja -DCLIENT_PROTOCOLS_TEST=ON -DCMAKE_BUILD_TYPE=Release ..
ninja -v | tee build.log
- name: "Test"
run: |
set -ex
cd build
rm -rf /github/home/.cache
mkdir -p /github/home/.cache
# Unit tests
./tests.sh --output-on-failure -L unit -j$(nproc --all)
# Suite tests
./tests.sh --timeout 600 --output-on-failure -L "suite"
# Most tests
./tests.sh --timeout 360 --output-on-failure -LE "suite|benchmark|unit"
shell: bash
- name: "Upload logs"
if: success() || failure()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: logs
path: |
build/workspace/*/*.config.json
build/workspace/*/out
build/workspace/*/err
build/workspace/*/*.ledger/*
build/workspace/*/stack_trace
if-no-files-found: ignore
- name: "Make .rpm (devel) Package"
id: make_rpm_devel
run: |
set -ex
set -o pipefail
cd build
# Reset cmake config to affect cpack settings
rm CMakeCache.txt
cmake -GNinja -DCMAKE_BUILD_TYPE=Release ..
cmake -L .. 2>/dev/null | grep CMAKE_INSTALL_PREFIX: | cut -d = -f 2 > /tmp/install_prefix
cpack -V -G RPM
INITIAL_PKG=`ls *devel*.rpm`
CCF_GITHUB_PKG=${INITIAL_PKG//\~/_}
if [[ "$INITIAL_PKG" != "$CCF_GITHUB_PKG" ]]; then
mv $INITIAL_PKG $CCF_GITHUB_PKG
fi
echo "name=$CCF_GITHUB_PKG" >> $GITHUB_OUTPUT
shell: bash
- name: "Install CCF package"
run: |
set -ex
cd build
tdnf -y install ./${{ steps.make_rpm_devel.outputs.name }}
shell: bash
- name: "Test Installed CCF"
run: |
set -ex
set -o pipefail
cd build
cat /tmp/install_prefix | xargs -i bash -c "PYTHON_PACKAGE_PATH=../python ./test_install.sh {}"
shell: bash
- name: "Recovery Benchmark for Installed CCF"
run: |
set -ex
set -o pipefail
cd build
cat /tmp/install_prefix | xargs -i bash -c "PYTHON_PACKAGE_PATH=../python ./recovery_benchmark.sh {}"
shell: bash
- name: "Test Building `logging` Sample App Against Installed CCF"
run: |
set -ex
./tests/test_install_build.sh
shell: bash
- name: "Upload `logging` Sample App"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: logging
path: build_against_install/logging
- name: "Upload SNP Canary"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: verify_uvm_attestation_and_endorsements
path: build/verify_uvm_attestation_and_endorsements
- name: "Upload .rpm Package"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: pkg
path: build/${{ steps.make_rpm_devel.outputs.name }}
- name: "Upload Compatibility Report"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: compatibility
path: build/compatibility_report.json
- name: "Upload TLS Report"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: tls
path: build/tls_report.html
- name: "Build Python Wheel"
id: build_wheel
run: |
set -ex
cd python
python3 -m venv env
source ./env/bin/activate
pip install wheel build
python -m build --wheel
WHL=`ls dist/*.whl`
echo "name=$WHL" >> $GITHUB_OUTPUT
shell: bash
- name: "Upload Python Wheel"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: wheel
path: python/${{ steps.build_wheel.outputs.name }}
- name: "Build TS Package"
id: build_tstgz
run: |
set -ex
cd js/ccf-app
CCF_VERSION=$(<../../build/VERSION_LONG)
CCF_VERSION=${CCF_VERSION#ccf-}
echo "Setting npm package version to ${CCF_VERSION}"
npm version $CCF_VERSION
npm pack
PKG=`ls *.tgz`
echo "name=$PKG" >> $GITHUB_OUTPUT
shell: bash
- name: "Upload TS Package"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: tstgz
path: js/ccf-app/${{ steps.build_tstgz.outputs.name }}
- name: "Generate Reproducibility Metadata"
id: metadata
shell: bash
run: |
set -ex
commit_id=$(git rev-parse HEAD)
echo "commit_sha=$commit_id" >> $GITHUB_OUTPUT
filename=reproduce.json
cat <<EOF > $filename
{
"build_container_image": "${{needs.image_digest.outputs.image_digest}}",
"tdnf_snapshottime": $SOURCE_DATE_EPOCH,
"commit_sha": "$commit_id"
}
EOF
cat $filename
- name: "Upload Reproducibility Metadata"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: reproduce-metadata
path: reproduce.json
test_rpm_against_app:
name: "Test building against CCF package"
needs: build_release
runs-on:
[
self-hosted,
1ES.Pool=gha-vmss-d16av6-ci,
"JobId=release_test_rpm_against_app-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}",
]
container:
image: mcr.microsoft.com/azurelinux/base/core:3.0
options: --user root --publish-all --cap-add NET_ADMIN --cap-add NET_RAW --cap-add SYS_PTRACE
steps:
- name: "Checkout dependencies"
shell: bash
run: |
set -ex
gpg --import /etc/pki/rpm-gpg/MICROSOFT-RPM-GPG-KEY
tdnf -y update
tdnf -y install ca-certificates git
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
- name: Download RPM
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
path: DOWNLOAD_DIR
pattern: pkg
merge-multiple: true
- name: Test against RPM
shell: bash
run: |
set -ex
PKG=`ls DOWNLOAD_DIR/*.rpm`
tdnf -y install $PKG
cd tests/ccfapp
mkdir -p build
cd build
CC=clang CXX=clang++ cmake -GNinja -DCMAKE_BUILD_TYPE=Release ..
ninja -v
./ccfapp > out.txt
grep "I'm a CCF test app" out.txt
/opt/ccf/bin/ensure-snmalloc.sh ccfapp
reproduce_rpm:
name: Test Reproducibility
needs:
- build_release
- image_digest
runs-on:
[
self-hosted,
1ES.Pool=gha-vmss-d16av6-ci,
"JobId=release_reproduce_rpm-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}",
]
env:
REPRO_DIR: /tmp/reproduced
container:
image: ${{ needs.image_digest.outputs.image_digest }}
options: "--user root"
steps:
- name: "Checkout dependencies"
shell: bash
run: |
set -ex
gpg --import /etc/pki/rpm-gpg/MICROSOFT-RPM-GPG-KEY
tdnf --snapshottime=${{ needs.image_digest.outputs.SOURCE_DATE_EPOCH }} -y update
tdnf --snapshottime=${{ needs.image_digest.outputs.SOURCE_DATE_EPOCH }} -y install ca-certificates git
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
- name: Download Prebuilt Packages
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
path: DOWNLOAD_DIR
pattern: pkg
merge-multiple: true
- name: Download Reproducibility Metadata
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
path: repro
pattern: reproduce-metadata
merge-multiple: true
- name: Reproduce RPMs
id: reproduce
shell: bash
run: |
set -ex
tdnf install --snapshottime=${{ needs.image_digest.outputs.SOURCE_DATE_EPOCH }} -y jq
git config --global --add safe.directory /__w/CCF/CCF
# Ensure all files have timestamps strictly after SOURCE_DATE_EPOCH,
# otherwise rpmbuild will not clamp to SOURCE_DATE_EPOCH and the build
# will not be reproducible.
find . -type f -exec touch {} +
./reproduce/reproduce_rpm.sh repro/reproduce.json
RPM_NAME=$(ls "$REPRO_DIR" || true)
if [ -z "$RPM_NAME" ]; then
echo "ERROR: No reproduced package found in $REPRO_DIR"
exit 1
fi
- name: Verify reproducibility
id: verify
shell: bash
run: |
set -ex
PKG=`ls "$REPRO_DIR"/*.rpm`
cmp "$PKG" "DOWNLOAD_DIR/$(basename "$PKG")"
- name: Upload Non-Reproduced Package
if: failure()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: not-reproduced
path: ${{ env.REPRO_DIR }}
create_release:
if: ${{ !inputs.dry_run }}
permissions:
contents: write
needs:
- reproduce_rpm
- test_rpm_against_app
- build_release
- release_notes
- make_sbom
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 1
- name: Download Packages
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
path: pkg
pattern: pkg*
merge-multiple: true
- name: Download Release Notes
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
name: relnotes
- name: Download Compatibility Report
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
name: compatibility
- name: Download TLS Report
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
name: tls
- name: Download Python Wheel
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
path: wheel
name: wheel
- name: Download TS Package
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
path: tstgz
name: tstgz
- name: Download SBOM
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
path: sbom
name: sbom
- name: Download Logging Sample App
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
name: logging
- name: Download SNP Canary
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
name: verify_uvm_attestation_and_endorsements
- name: Download Reproducibility Metadata
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
path: repro
pattern: reproduce*
merge-multiple: true
- run: |
set -ex
CCF_VERSION=${{ github.ref_name }}
CCF_VERSION=${CCF_VERSION#ccf-}
gh release create --title $CCF_VERSION --draft --notes-file rel-notes.md ${{ github.ref_name }} pkg/* wheel/*.whl tstgz/*.tgz sbom/* tls_report.html compatibility_report.json repro/* logging verify_uvm_attestation_and_endorsements ./reproduce/start_container_and_reproduce_rpm.sh
shell: bash
env:
GH_TOKEN: ${{ github.token }}