-
Notifications
You must be signed in to change notification settings - Fork 100
96 lines (87 loc) · 2.71 KB
/
aa_cc_kbc.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
name: attestation-agent cc_kbc tests
on:
push:
branches:
- 'main'
paths:
- 'attestation-agent/kbc/cc_kbc/**'
- 'attestation-agent/kbs_protocol/**'
- 'attestation-agent/lib/**'
- '.github/workflows/aa_cc_kbc.yml'
pull_request:
paths:
- 'attestation-agent/kbc/cc_kbc/**'
- 'attestation-agent/kbs_protocol/**'
- 'attestation-agent/lib/**'
- '.github/workflows/aa_cc_kbc.yml'
create:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
cc_kbc_ci:
if: github.event_name != 'push'
name: Check
defaults:
run:
working-directory: ./attestation-agent
strategy:
fail-fast: false
matrix:
rust:
- stable
instance:
- ubuntu-24.04
- ubuntu-24.04-arm
include:
- instance: ubuntu-24.04
attester: snp-attester
- instance: ubuntu-24.04
attester: tdx-attester
- instance: ubuntu-24.04
attester: az-snp-vtpm-attester
- instance: ubuntu-24.04
attester: az-tdx-vtpm-attester
- instance: ubuntu-24.04-arm
attester: cca-attester
# TODO: remove rust: 1.82.0 and exclude when the following issue is resolved
# https://github.com/rust-lang/rust/issues/135867
rust: 1.82.0
exclude:
- instance: ubuntu-24.04-arm
rust: stable
runs-on: ${{ matrix.instance }}
steps:
- name: Code checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Rust toolchain (${{ matrix.rust }})
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- name: Install TPM dependencies
run: |
sudo apt-get update
sudo apt-get install -y libtss2-dev
if: matrix.instance == 'ubuntu-24.04'
- name: Install protoc
run: |
sudo apt-get update && sudo apt-get install -y protobuf-compiler
- name: Build and install with ${{ matrix.attester }} feature
run: |
make ATTESTER=${{ matrix.attester }} && make install
- name: Run rust lint check
uses: actions-rs/cargo@v1
with:
command: clippy
args: -p kbc --all-targets --features cc_kbc,${{ matrix.attester }},rust-crypto -- -D warnings
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --features cc_kbc,${{ matrix.attester }},rust-crypto -p kbc