Skip to content

Commit

Permalink
Add async-usercalls to the github workflow
Browse files Browse the repository at this point in the history
This change ports the old tests from .travis.yml
to the new github actions
used on the current master branch.

@raoulstrackx
  • Loading branch information
Vasili Novikov committed Jan 17, 2024
1 parent 2c49170 commit 2bf3f6c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ jobs:
rustup update
- name: Cargo test --all --exclude sgxs-loaders
run: cargo test --verbose --locked --all --exclude sgxs-loaders && [ "$(echo $(nm -D target/debug/sgx-detect|grep __vdso_sgx_enter_enclave))" = "w __vdso_sgx_enter_enclave" ]
run: cargo test --verbose --locked --all --exclude sgxs-loaders --exclude async-usercalls && [ "$(echo $(nm -D target/debug/sgx-detect|grep __vdso_sgx_enter_enclave))" = "w __vdso_sgx_enter_enclave" ]

- name: cargo test -p async-usercalls --target x86_64-fortanix-unknown-sgx --no-run
run: cargo test --verbose --locked -p async-usercalls --target x86_64-fortanix-unknown-sgx --no-run

- name: Cargo test -p dcap-ql --features link
run: cargo test --verbose --locked -p dcap-ql --features link
Expand Down

0 comments on commit 2bf3f6c

Please sign in to comment.