-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Xynnn007 <[email protected]>
- Loading branch information
Showing
1 changed file
with
95 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
name: confidential-data-hub basic build and unit tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
paths: | ||
- 'confidential-data-hub/**' | ||
- '.github/workflows/cdh_basic.yml' | ||
- 'Cargo.toml' | ||
pull_request: | ||
paths: | ||
- 'confidential-data-hub/**' | ||
- '.github/workflows/cdh_basic.yml' | ||
- 'Cargo.toml' | ||
create: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
basic_ci: | ||
name: Check | ||
defaults: | ||
run: | ||
working-directory: ./confidential-data-hub | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
rust: | ||
- stable | ||
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 protoc | ||
run: | | ||
sudo apt-get update && sudo apt-get install -y protobuf-compiler | ||
# - name: Install TDX dependencies | ||
# run: | | ||
# sudo curl -L https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | sudo apt-key add - | ||
# sudo echo 'deb [arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu focal main' | sudo tee /etc/apt/sources.list.d/intel-sgx.list | ||
# sudo apt-get update | ||
# sudo apt-get install -y libtdx-attest-dev | ||
|
||
# - name: Install TPM dependencies | ||
# run: | | ||
# sudo apt-get update | ||
# sudo apt-get install -y libtss2-dev | ||
|
||
# - name: Install dm-verity dependencies | ||
# run: | | ||
# sudo apt-get update | ||
# sudo apt-get install -y libdevmapper-dev | ||
|
||
- name: Build and install with default features | ||
run: | | ||
make && make install | ||
- name: Musl build with default features | ||
run: | | ||
make LIBC=musl | ||
- name: s390x build with offline_fs_kbc feature | ||
run: | ||
make ARCH=s390x | ||
|
||
- name: Run cargo test | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
args: --features kbs,aliyun,sev,bin -p kms -p confidential-data-hub -p secret | ||
|
||
- name: Run cargo fmt check | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: fmt | ||
args: -p kms -p confidential-data-hub -p secret -- --check | ||
|
||
- name: Run rust lint check | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: clippy | ||
# We are getting error in generated code due to derive_partial_eq_without_eq check, so ignore it for now | ||
args: -p kms -p confidential-data-hub -p secret -- -D warnings -A clippy::derive-partial-eq-without-eq |