Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
yogh333 committed Dec 6, 2024
2 parents dd58c5c + 9a26ac4 commit cbd4a3c
Show file tree
Hide file tree
Showing 669 changed files with 9,457 additions and 2,742 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,29 @@ jobs:
upload_app_binaries_artifact: "compiled_app_binaries"
builder: ledger-app-builder

build_check_signature:
name: Build binary used to check signture during the test
runs-on: ubuntu-latest
container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-dev-tools:latest
steps:
- name: Clone
uses: actions/checkout@v4
- name: Build
run: |
cargo build -p check-signature
- name: Upload app binary
uses: actions/upload-artifact@v4
with:
name: check-signature
path: target/debug/check-signature
if-no-files-found: error

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"
additional_app_binaries_artifact: "check-signature"
additional_app_binaries_artifact_dir: "target/debug"
13 changes: 3 additions & 10 deletions .github/workflows/rust_fmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,11 @@ env:
jobs:
rust_fmt:
runs-on: ubuntu-latest
container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder:latest
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt

- name: Cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
run: cargo fmt --all -- --check
Loading

0 comments on commit cbd4a3c

Please sign in to comment.