Skip to content

Commit

Permalink
Update Ci due to Nano S support deletion in Boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
tdejoigny-ledger committed Jul 29, 2024
1 parent 5275ad1 commit 8e91106
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/build_and_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
- develop

jobs:

build_boilerplate_application:
name: Build boilerplate application using the reusable workflow
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_build.yml@v1
Expand All @@ -22,9 +23,18 @@ jobs:
app_branch_name: master
upload_app_binaries_artifact: boilerplate_binaries

build_boilerplate_application_nanos:
name: Build boilerplate application for Nanos S using the reusable workflow
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_build.yml@v1
with:
app_repository: LedgerHQ/app-boilerplate
app_branch_name: nanos_baseline
run_for_devices: '["nanos"]'
upload_app_binaries_artifact: boilerplate_binaries_nanos

build_install_test:
name: Install and test the library
needs: [build_boilerplate_application]
needs: [build_boilerplate_application, build_boilerplate_application_nanos]
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -56,6 +66,12 @@ jobs:
name: boilerplate_binaries
path: ./build/

- name: Download app binaries for Nano S
uses: actions/download-artifact@v4
with:
name: boilerplate_binaries_nanos
path: ./build/

- name: Create boilerplate manifest
run: |
echo """[app]
Expand Down

0 comments on commit 8e91106

Please sign in to comment.