forked from confidential-containers/td-shim
-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (73 loc) · 2.26 KB
/
main.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
on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
workflow_dispatch:
name: Build
env:
AS: nasm
AR_x86_64_unknown_linux_gnu: llvm-ar
CC_x86_64_unknown_linux_gnu: clang
AR_x86_64_unknown_none: llvm-ar
CC_x86_64_unknown_none: clang
RUST_TOOLCHAIN: nightly-2023-12-31
TOOLCHAIN_PROFILE: minimal
jobs:
system_compile:
name: Compile the final.bin file
runs-on: ${{ matrix.host_os }}
timeout-minutes: 30
strategy:
matrix:
host_os:
- ubuntu-20.04
- windows-2019
steps:
# Install first since it's needed to build NASM
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: "10.0"
directory: ${{ runner.temp }}/llvm
- name: install NASM
uses: ilammy/setup-nasm@v1
- name: Checkout sources
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
components: rust-src
- name: Run cargo install cargo-xbuild
run: cargo install cargo-xbuild
- name: Preparation Work
run: bash sh_script/preparation.sh
- name: Test Shim Crates
run: make test
- name: Build Release TdShim
run: cargo xbuild -p td-shim --target x86_64-unknown-none --release --features=main,tdx
- name: Build Debug TdShim
run: cargo xbuild -p td-shim --target x86_64-unknown-none --features=main,tdx --no-default-features
- name: Build td-shim-tools
run: |
cargo build -p td-shim-tools
- name: Build image without payload
run: |
cargo image --release
- name: Meta data check
run: |
cargo run -p td-shim-tools --bin td-shim-checker --no-default-features --features=loader -- target/release/final.bin
- name: Build debug image without payload
run: |
cargo image
- name: Build Release Elf format payload
run: |
cargo image --example-payload --release
- name: Build Debug Elf format payload
run: |
cargo image --example-payload