Skip to content

Commit

Permalink
Fix CI zemu_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
0xPxt committed Nov 21, 2024
1 parent bd75db5 commit ec7886c
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/build_and_functional_tests.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
name: Build and run functional tests using ragger through reusable workflow

# This workflow will build the app and then run functional tests using the Ragger framework upon Speculos emulation.
# It calls a reusable workflow developed by Ledger's internal developer team to build the application and upload the
# resulting binaries.
# It then calls another reusable workflow to run the Ragger tests on the compiled application binary.
#
# While this workflow is optional, having functional testing on your application is mandatory and this workflow and
# tooling environment is meant to be easy to use and adapt after forking your application
name: Build and run zemu tests

on:
workflow_dispatch:
Expand All @@ -19,6 +11,7 @@ on:
branches:
- develop
- master
- dev

jobs:
build_application:
Expand All @@ -33,4 +26,13 @@ jobs:
needs: build_application
runs-on: ubuntu-latest
steps:
- run: cd tests_zemu && yarn test
- uses: actions/checkout@v4
- name: Download app binaries
uses: actions/download-artifact@v3
with:
name: compiled_app_binaries
path: build
- name: Install dependencies
run: cd tests_zemu && yarn install
- name: Run tests
run: cd tests_zemu && yarn test

0 comments on commit ec7886c

Please sign in to comment.