From 18c4e74f297687520ea87e092cc921e5dc504765 Mon Sep 17 00:00:00 2001 From: Lucas PASCAL Date: Fri, 15 Dec 2023 10:44:32 +0100 Subject: [PATCH] [add] manifest --- .github/workflows/build_tests_and_analysis.yml | 1 - Makefile | 1 - ledger_app.toml | 8 ++++++++ 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 ledger_app.toml diff --git a/.github/workflows/build_tests_and_analysis.yml b/.github/workflows/build_tests_and_analysis.yml index bd909ab9..31ce0931 100644 --- a/.github/workflows/build_tests_and_analysis.yml +++ b/.github/workflows/build_tests_and_analysis.yml @@ -22,7 +22,6 @@ jobs: uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_ragger_tests.yml@v1 with: download_app_binaries_artifact: compiled_app_binaries - test_dir: tests/functional run_for_devices: '["stax"]' unittesting: diff --git a/Makefile b/Makefile index 5707e99d..28f598ff 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,6 @@ endif # Build configuration -DEFINES += APPNAME=\"$(APPNAME)\" DEFINES += APPVERSION=\"$(APPVERSION)\" DEFINES += LEDGER_MAJOR_VERSION=$(APPVERSION_M) DEFINES += LEDGER_MINOR_VERSION=$(APPVERSION_N) diff --git a/ledger_app.toml b/ledger_app.toml new file mode 100644 index 00000000..2b7b03a5 --- /dev/null +++ b/ledger_app.toml @@ -0,0 +1,8 @@ +[app] +build_directory = "./" +sdk = "C" +devices = ["nanos", "nanox", "nanos+", "stax"] + +[tests] +unit_directory = "./tests/unit" +pytest_directory = "./tests/functional"