Skip to content

Commit

Permalink
Merge pull request #68 from LedgerHQ/tdj/nanos_build_fix
Browse files Browse the repository at this point in the history
Build on API_LEVEL_LNS instead of master for NanoS target
  • Loading branch information
tdejoigny-ledger authored Oct 21, 2024
2 parents 64a8e52 + 84358a1 commit bde20a2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,11 @@ jobs:
- name: Launch build
run: |
python3 scripts/entrypoint.py build_and_test --sdk_ref ${{ inputs.sdk_ref || 'master' }} --input_file input_${{ matrix.index }}.json --build --${{ matrix.device }} --skip_setup --output_file build_${{ matrix.device }}_${{ matrix.index }}.json --logs_file log_${{ matrix.device }}_${{ matrix.index }}.txt
if [ "${{ matrix.device }}" == "nanos" ]; then
python3 scripts/entrypoint.py build_and_test --sdk_ref ${{ inputs.sdk_ref || 'API_LEVEL_LNS' }} --input_file input_${{ matrix.index }}.json --build --${{ matrix.device }} --skip_setup --output_file build_${{ matrix.device }}_${{ matrix.index }}.json --logs_file log_${{ matrix.device }}_${{ matrix.index }}.txt
else
python3 scripts/entrypoint.py build_and_test --sdk_ref ${{ inputs.sdk_ref || 'master' }} --input_file input_${{ matrix.index }}.json --build --${{ matrix.device }} --skip_setup --output_file build_${{ matrix.device }}_${{ matrix.index }}.json --logs_file log_${{ matrix.device }}_${{ matrix.index }}.txt
fi
#- name: Push info to DB
# run: |
Expand Down

0 comments on commit bde20a2

Please sign in to comment.