Skip to content

Commit

Permalink
Build on API_LEVEL_LNS instead of master for NanoS target
Browse files Browse the repository at this point in the history
  • Loading branch information
tdejoigny-ledger committed Oct 21, 2024
1 parent 9a487d4 commit 84358a1
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 84358a1

Please sign in to comment.