From dc60f23a61f337ea59be103e52fb9f4207ab7de0 Mon Sep 17 00:00:00 2001 From: Will Woods Date: Mon, 4 Oct 2021 19:32:03 -0400 Subject: [PATCH] Add wasmldr to github workflows * Enable `--feature=wasmldr` when running the main test action * Add `wasmldr` to the list of internal crates to test --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 66e8e162f..cbddff982 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: test - args: ${{ matrix.profile.flag }} --no-default-features --features=backend-${{ matrix.backend.name }} + args: ${{ matrix.profile.flag }} --no-default-features --features=backend-${{ matrix.backend.name }} --features=wasmldr strategy: fail-fast: false matrix: @@ -50,6 +50,7 @@ jobs: crate: - shim-sgx - shim-sev + - wasmldr profile: - name: debug - name: release