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 27, 2024
1 parent 5275ad1 commit 40aa473
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/build_and_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,27 @@ 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
with:
app_repository: LedgerHQ/app-boilerplate
app_branch_name: master
app_branch_name: tdj/remove_nanoS_support
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 40aa473

Please sign in to comment.