Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/build_and_functional_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
with:
upload_app_binaries_artifact: "ragger_elfs"
flags: "use_test_keys"
build_comparison: true
enable_stack_consumption: true

ragger_tests:
name: Run ragger tests using the reusable workflow
Expand All @@ -41,13 +43,15 @@ jobs:
with:
download_app_binaries_artifact: "ragger_elfs"
regenerate_snapshots: ${{ inputs.golden_run == 'Open a PR' }}
post_stack_consumption: true

build_clone_app:
name: Build Clone app using the reusable workflow
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_build.yml@v1
with:
flags: "CHAIN=thundercore"
upload_app_binaries_artifact: "clone_elfs"
enable_stack_consumption: true

ragger_clone_tests:
name: Run ragger Clone tests using the reusable workflow
Expand All @@ -61,6 +65,7 @@ jobs:
additional_app_binaries_artifact_dir: ./tests/ragger/.test_dependencies/clone/build/
test_options: "--setup lib_mode"
regenerate_snapshots: ${{ inputs.golden_run == 'Open a PR' }}
post_stack_consumption: true
stack_consumption_section_id: "clone_app_stack_consumption"
Comment thread
mbrousset-ledger marked this conversation as resolved.

build_mem_app:
Expand All @@ -70,8 +75,6 @@ jobs:
upload_app_binaries_artifact: "memory_elfs"
flags: "memory_profiling"
run_for_devices: '["nanox"]'
build_comparison: false
enable_stack_consumption: false

ragger_mem_tests:
name: Run Memory tests using the reusable workflow
Expand All @@ -82,7 +85,6 @@ jobs:
run_for_devices: '["nanox"]'
upload_snapshots_on_failure: false
capture_file: pytest-logs-combined
post_stack_consumption: false

ragger_mem_results:
name: Process pytest logs
Expand Down
Loading