Skip to content

[Policy V2] Add tools to support key & policy auto generation and auto update td info into tcb_mapping.json #1431

[Policy V2] Add tools to support key & policy auto generation and auto update td info into tcb_mapping.json

[Policy V2] Add tools to support key & policy auto generation and auto update td info into tcb_mapping.json #1431

Workflow file for this run

on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
workflow_dispatch:
name: Library Crates
env:
AS: nasm
AR: llvm-ar
CC: clang
RUST_TOOLCHAIN: 1.83.0
TOOLCHAIN_PROFILE: minimal
permissions:
contents: read
jobs:
lib-test:
name: Build Library Crates
runs-on: ubuntu-22.04
timeout-minutes: 30
steps:
# Install first since it's needed to build NASM
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@98e68e10c96dffcb7bfed8b2144541a66b49aa02 # v2.0.8
with:
version: "10.0"
directory: ${{ runner.temp }}/llvm
- name: Install libtinfo5
run: sudo apt-get update -y && sudo apt-get install libtinfo5 -y
- name: install NASM
uses: ilammy/setup-nasm@72793074d3c8cdda771dba85f6deafe00623038b # v1.5.2
- name: Install tools for sgx lib
run: sudo apt-get install build-essential ocaml ocamlbuild automake autoconf libtool wget python-is-python3 libssl-dev git cmake perl
- name: Install nightly toolchain
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
with:
profile: ${{ env.TOOLCHAIN_PROFILE }}
toolchain: ${{ env.RUST_TOOLCHAIN }}
override: true
- name: Checkout sources
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
with:
submodules: recursive
- name: Add `x86_64-unknown-none` target
run: rustup target add x86_64-unknown-none
- name: Preparation work
run: bash sh_script/preparation.sh
- name: Build library crates
run: cargo xtask lib-build
- name: Test library crates
run: cargo xtask lib-test