fix: rename functional to zemu

This commit is contained in:
Coline
2022-06-28 13:30:09 +02:00
parent b941145337
commit 51fdc01065
340 changed files with 6 additions and 6 deletions

View File

@@ -114,13 +114,13 @@ jobs:
- uses: actions/checkout@v2
- name: Build testing binaries
run: cd tests/functional/ && ./build_local_test_elfs.sh
run: cd tests/zemu/ && ./build_local_test_elfs.sh
- name: Upload app binaries
uses: actions/upload-artifact@v2
with:
name: e2e_elfs
path: ./tests/functional/elfs/
path: ./tests/zemu/elfs/
jobs-e2e-tests:
name: E2E tests
@@ -146,10 +146,10 @@ jobs:
run: npm install -g yarn
- name: Build/Install build js deps
run: cd tests/functional/ && yarn install
run: cd tests/zemu/ && yarn install
- name: Create tmp folder for artifacts
run: mkdir tests/functional/elfs
run: mkdir tests/zemu/elfs
- name: Download app binaries
uses: actions/download-artifact@v2
@@ -157,7 +157,7 @@ jobs:
path: tmp/
- name: Gather elfs
run: cp `find tmp/e2e_elfs/ -name "*.elf"` tests/functional/elfs/
run: cp `find tmp/e2e_elfs/ -name "*.elf"` tests/zemu/elfs/
- name: Run zemu tests
run: cd tests/functional/ && yarn test
run: cd tests/zemu/ && yarn test