-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
76 additions
and
1 deletion.
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,75 @@ | ||
name: rust-sgx | ||
|
||
permissions: | ||
contents: read | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '*.md' | ||
- 'LICENSE' | ||
branches: | ||
- staging | ||
- trying | ||
- master | ||
pull_request: | ||
paths-ignore: | ||
- '*.md' | ||
- 'LICENSE' | ||
branches: | ||
- master | ||
- mz/async-usercalls | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
CARGO_NET_RETRY: 10 | ||
CARGO_INCREMENTAL: 0 | ||
RUST_BACKTRACE: 1 | ||
CFLAGS_x86_64_fortanix_unknown_sgx: "-isystem/usr/include/x86_64-linux-gnu -mlvi-hardening -mllvm -x86-experimental-lvi-inline-asm-hardening" | ||
CC_x86_64_fortanix_unknown_sgx: clang-11 | ||
jobs: | ||
build: | ||
name: Build+test | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Install dependencies | ||
run: | | ||
wget -qO - https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | sudo apt-key add - | ||
wget -qO - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - | ||
sudo add-apt-repository 'deb https://download.01.org/intel-sgx/sgx_repo/ubuntu focal main' | ||
sudo add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-11 main' | ||
sudo apt-get update | ||
sudo apt-get install faketime protobuf-compiler libsgx-dcap-ql-dev clang-11 musl-tools | ||
- name: Setup rust toolchain | ||
run: | | ||
rustup target add x86_64-fortanix-unknown-sgx x86_64-unknown-linux-musl | ||
rustup toolchain add nightly | ||
rustup target add x86_64-fortanix-unknown-sgx --toolchain nightly | ||
- name: Run tests | ||
run: | | ||
cargo test --verbose --all --exclude sgxs-loaders --exclude async-usercalls && [ "$(echo $(nm -D target/debug/sgx-detect|grep __vdso_sgx_enter_enclave))" = "w __vdso_sgx_enter_enclave" ] | ||
cargo +nightly test --verbose -p async-usercalls --target x86_64-fortanix-unknown-sgx --no-run | ||
cargo +nightly test --verbose -p sgx-isa --features sgxstd --target x86_64-fortanix-unknown-sgx --no-run | ||
cargo test --verbose -p sgxs-tools | ||
cargo test --verbose -p dcap-ql --features link | ||
cargo test --verbose -p dcap-ql --features verify | ||
cargo +nightly build --verbose -p aesm-client --target=x86_64-fortanix-unknown-sgx | ||
cargo +nightly build --verbose -p aesm-client --target=x86_64-fortanix-unknown-sgx --features sgx-isa/sgxstd | ||
mkdir -p /tmp/muslinclude && ln -sf /usr/include/x86_64-linux-gnu/openssl /tmp/muslinclude/openssl && PKG_CONFIG_ALLOW_CROSS=1 CFLAGS=-I/tmp/muslinclude cargo build -p fortanix-sgx-tools --target x86_64-unknown-linux-musl | ||
cargo +nightly test --manifest-path em-app/Cargo.toml --target=x86_64-fortanix-unknown-sgx --no-run | ||
ci-success: | ||
name: ci | ||
if: always() | ||
needs: | ||
- build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}' | ||
- name: Done | ||
run: exit 0 |
File renamed without changes.
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
status = [ | ||
"continuous-integration/travis-ci/push", | ||
"ci", | ||
] |