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