-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split build and test CI entry point from workflow to provide a reusab…
…le interface
- Loading branch information
1 parent
b14b3a9
commit 3527c5e
Showing
2 changed files
with
57 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Build and run functional tests using ragger entry point | ||
|
||
# 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. | ||
# | ||
# This workflow is itself written as a reusable workflow so it can be triggered by itself (file | ||
# build_and_functional_tests.yml), or triggered by external repositories CI (used by various non regression workflows | ||
# we have). You do not need to keep this split, so you can merge this file and build_and_functional_tests.yml on your | ||
# fork | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
branch: | ||
required: false | ||
default: 'master' | ||
type: string | ||
|
||
test_filter: | ||
required: false | ||
default: '""' | ||
type: string | ||
|
||
regenerate_snapshots: | ||
description: 'Clean snapshots, regenerate them, commit the changes in a branch, and open a PR' | ||
required: false | ||
default: false | ||
type: boolean | ||
|
||
jobs: | ||
build_application: | ||
name: Build application using the reusable workflow | ||
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_build.yml@v1 | ||
with: | ||
app_repository: LedgerHQ/app-boilerplate-rust | ||
app_branch_name: ${{ inputs.branch }} | ||
upload_app_binaries_artifact: "compiled_app_binaries" | ||
builder: ledger-app-builder | ||
|
||
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: | ||
app_repository: LedgerHQ/app-boilerplate-rust | ||
app_branch_name: ${{ inputs.branch }} | ||
download_app_binaries_artifact: "compiled_app_binaries" | ||
test_filter: ${{ inputs.test_filter }} | ||
regenerate_snapshots: ${{ inputs.regenerate_snapshots }} |