From 13caf0b6a2f2745070031d5d8c27ae599eaa7325 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Mon, 18 May 2020 13:37:44 -0700 Subject: [PATCH] Fix github action to run tests on RISC-V The command line directive was incorrect. Signed-off-by: Keith Packard --- .github/workflows/snek.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/snek.yml b/.github/workflows/snek.yml index 941e552..067c9f7 100644 --- a/.github/workflows/snek.yml +++ b/.github/workflows/snek.yml @@ -26,7 +26,7 @@ jobs: docker run --rm \ --mount type=bind,source=`pwd`/artifacts,destination=/artifacts \ snek \ - make DESTDIR=/artifacts PREFIX=/opt/snek SNEK_TEST_RISCV=1 check install + make DESTDIR=/artifacts PREFIX=/opt/snek SNEK_RISCV_TEST=1 check install - name: 'Upload results' uses: actions/upload-artifact@v2