Rust SDK framework for CC API VM SDK [Ready to Merge] #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust Code Scan | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'common/rust/cctrusted_base/src/**.rs' | |
- 'common/rust/cctrusted_base/src/tdx/**.rs' | |
- 'common/rust/cctrusted_base/src/tpm/**.rs' | |
- 'vmsdk/rust/cctrusted_vm/src/**.rs' | |
- 'vmsdk/rust/sample/src/**.rs' | |
- '.github/workflows/pr-check-rust.yaml' | |
pull_request: | |
paths: | |
- 'common/rust/cctrusted_base/src/**.rs' | |
- 'common/rust/cctrusted_base/src/tdx/**.rs' | |
- 'common/rust/cctrusted_base/src/tpm/**.rs' | |
- 'vmsdk/rust/cctrusted_vm/src/**.rs' | |
- 'vmsdk/rust/sample/src/**.rs' | |
- '.github/workflows/pr-check-rust.yaml' | |
workflow_dispatch: | |
jobs: | |
codescan: | |
runs-on: tdx-runner | |
steps: | |
- name: Checkout PR | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt update && yes | DEBIAN_FRONTEND=noninteractive sudo apt install -y libcryptsetup-dev clang protobuf-compiler protobuf-c-compiler libprotobuf-c-dev libprotobuf-c1 build-essential pkg-config libssl-dev | |
- name: Run cargo check | |
run: | | |
cd common/rust/cctrusted_base/src | |
cargo test | |
cargo check | |
cargo fmt -- --check | |
cargo clippy | |
cargo install --locked cargo-deny | |
cargo deny check | |
cd vmsdk/rust/cctrusted_vm/src/ | |
cargo test | |
cargo check | |
cargo fmt -- --check | |
cargo clippy | |
cargo deny check |