-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove unused testing machinery * Update submodules * Add error message getter and improve error definition * Update zemu * remove getter * Update nom and improve error variants naming * Improve workflows * Address warnings on deprecated functions * Enable stax device compilation and set Production build * update modules * update workflows * Make clippy happy fix clippy ci * Update jest * fix clippy * bump version and update snapshots * check production build * update tests * update transport * update transport * Fix production build flag setting * Fix app params * Remove comment * Update checkout to v4 * update actions * minor changes * add Stax snapshots * add getAddress tests for m/5757'/x/x/x/x path --------- Co-authored-by: ftheirs <[email protected]>
- Loading branch information
Showing
272 changed files
with
5,803 additions
and
1,055 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
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,43 @@ | ||
name: Lint and format 💅 | ||
|
||
on: | ||
workflow_dispatch: | ||
# push: | ||
# pull_request: | ||
# branches: | ||
# - main | ||
# - develop | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-legacy:latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Add missing deps | ||
run: | | ||
DEBIAN_FRONTEND=noninteractive | ||
apt-get update | ||
apt-get install -y bear sudo | ||
- name: Generate compilation database | ||
run: bear -- make -j BOLOS_SDK="$NANOSP_SDK" | ||
- name: Lint and format 💅 | ||
uses: cpp-linter/cpp-linter-action@v2 | ||
id: linter | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
file-annotations: true | ||
files-changed-only: false | ||
ignore: "app/build|cmake|deps|fuzz|tests" | ||
step-summary: true | ||
style: file # uses .clang-format | ||
thread-comments: true | ||
tidy-checks: "" # use only .clang-tidy checks | ||
- name: Fail if errors | ||
if: steps.linter.outputs.checks-failed > 0 | ||
run: | | ||
echo "Linter or formatter failed!" | ||
exit 1 |
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
Oops, something went wrong.