From 6be3e7efba154c551d536f6aa1d6f76e6c08ffd5 Mon Sep 17 00:00:00 2001 From: "Hui, Chunyang" Date: Thu, 29 Apr 2021 02:31:44 +0000 Subject: [PATCH] Ignore RA-TLS demo result for simulation mode in CI --- .github/workflows/demo_test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/demo_test.yml b/.github/workflows/demo_test.yml index dff10c6c..57d57069 100644 --- a/.github/workflows/demo_test.yml +++ b/.github/workflows/demo_test.yml @@ -475,10 +475,11 @@ jobs: - name: Run the encalve tls server on Occlum run: docker exec enclave_ra_tls_test bash -c "cd /root/occlum/demos/enclave_tls && SGX_MODE=SIM ./run_enclave_tls_server_in_occlum.sh" + # Ignore the result here as simulation mode doesn't have RA capabilities - name: Run the encalve tls client run: | sleep ${{ env.nap_time }}; - docker exec enclave_ra_tls_test bash -c "/opt/enclave-tls/bin/enclave-tls-client" + docker exec enclave_ra_tls_test bash -c "/opt/enclave-tls/bin/enclave-tls-client" || true vault_test: runs-on: ubuntu-18.04