Handle variable report_data index sizes (#62) #66
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: e2e | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
build-and-run-example: | |
runs-on: [ "self-hosted", "azure-cvm", "ubuntu-2204" ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y build-essential libssl-dev pkg-config libtss2-dev | |
- name: Build example project | |
working-directory: ./az-snp-vtpm | |
run: cargo build --release -p example | |
- name: Run example project | |
working-directory: ./az-snp-vtpm | |
run: sudo ./target/release/example |