feat: initial commit #1
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 | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: "always" | |
CARGO_INCREMENTAL: "0" | |
RUSTC_WRAPPER: "sccache" | |
SCCACHE_GHA_ENABLED: "true" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Prep | |
run: | | |
wget -qO - https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | sudo apt-key add - | |
sudo bash -c 'echo "deb [arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu focal main" > /etc/apt/sources.list.d/intel-sgx.list' | |
sudo apt -o Acquire::Retries=3 update | |
sudo apt -o Acquire::Retries=3 install -y --no-install-recommends \ | |
libsgx-headers \ | |
libsgx-enclave-common \ | |
libsgx-urts \ | |
libsgx-dcap-quote-verify \ | |
libsgx-dcap-quote-verify-dev | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Install sccache | |
uses: mozilla-actions/sccache-action@v0.0.4 | |
- name: Run clippy | |
run: cargo clippy --all --locked | |
- name: Build | |
run: cargo build --all --locked | |
- name: Run tests | |
run: cargo test --all --locked | |
- name: Run tests --release --locked | |
run: cargo test --release --all |