From 1588e4f35850adc1917fd699ddab1f58724cb51e Mon Sep 17 00:00:00 2001 From: TamtamHero <10632523+TamtamHero@users.noreply.github.com> Date: Wed, 1 Sep 2021 20:03:37 +0200 Subject: [PATCH] Fix elfs gathering for CI tests --- .github/workflows/ci-workflow.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index 5c2c5b3..9c19c99 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -124,13 +124,17 @@ jobs: - name: Build/Install build js deps run: | cd tests && yarn install + - name: Create tmp folder for artifacts + run: | + mkdir tests/elfs - name: Download app binaries uses: actions/download-artifact@v2 with: path: tests/elfs - name: Gather elfs run: | - cp `find . -name "*.elf"` ./tests/elfs + cd tests/elfs + cp `find . -name "*.elf"` . - name: Run zemu tests run: | cd tests && yarn test