Skip to content

Commit

Permalink
sigh, actions
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Richter <[email protected]>
  • Loading branch information
erichte-ibm committed Oct 5, 2023
1 parent 571cd41 commit ae14edd
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ jobs:
makefile:
strategy:
matrix:
backend: ["", "GUEST_BACKEND=0", "HOST_BACKEND=0"]
backend: [""] #, "GUEST_BACKEND=0", "HOST_BACKEND=0"]
fail-fast: false


runs-on: ubuntu-latest

Expand All @@ -18,6 +20,18 @@ jobs:
- name: install openssl and valgrind for running test script
run: sudo apt-get update && sudo apt-get install -y openssl libssl-dev libmbedtls-dev

- name: build
run: make debug

- name: tar
run: tar czvf secvarctl.tar.gz *

- uses: actions/upload-artifact@v3
if: failure()
with:
name: secvarctl
path: secvarctl.tar.gz

- name: run test cases
run: make ${{ matrix.backend }} check

Expand Down

0 comments on commit ae14edd

Please sign in to comment.