Skip to content

Commit

Permalink
Remove throw, use standard app layout, clean, and move to its own lib
Browse files Browse the repository at this point in the history
  • Loading branch information
sgliner-ledger committed Apr 4, 2024
1 parent 5e5a161 commit 7f6ee88
Show file tree
Hide file tree
Showing 85 changed files with 3,625 additions and 3,967 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build_and_functional_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
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

on:
workflow_dispatch:
push:
branches:
- master
- main
- develop
pull_request:

jobs:
build_application:
name: Build application using the reusable workflow
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_build.yml@v1
with:
upload_app_binaries_artifact: "compiled_app_binaries"
flags: "COIN=bitcoin_testnet"

ragger_tests:
name: Run ragger tests using the reusable workflow
needs: build_application
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_ragger_tests.yml@v1
with:
download_app_binaries_artifact: "compiled_app_binaries"
98 changes: 0 additions & 98 deletions .github/workflows/ci-workflow.yml

This file was deleted.

Loading

0 comments on commit 7f6ee88

Please sign in to comment.