test(core): ignore {0} in bitcoin-only firmware

pull/3588/head
Martin Milata 3 months ago
parent fd3919254c
commit a433f8f914

@ -51,6 +51,8 @@ jobs:
- run: nix-shell --run "poetry run make -C core build_firmware"
- run: nix-shell --run "poetry run make -C core sizecheck"
if: matrix.coins == 'universal' && matrix.type != 'debuglink'
- run: nix-shell --run "poetry run ./tools/check-bitcoin-only core/build/firmware/firmware.bin"
if: matrix.coins == 'btconly' && matrix.type != 'debuglink'
- uses: actions/upload-artifact@v4
with:
name: core-firmware-${{ matrix.model }}-${{ matrix.coins }}-${{ matrix.type }}

@ -8,7 +8,7 @@ EXCEPTIONS+=( "omni" ) # OMNI is part of the bitcoin app
EXCEPTIONS+=( "dash" )
EXCEPTIONS+=( "confirm_ethereum_tx" "confirm_ethereum_staking_tx" ) # model-specific, so is in layout/__init__.py instead of ethereum/layout.py
EXCEPTIONS+=( "__" ) # ignoring the translations blob (section__key delimiter)
EXCEPTIONS+=( "{}" ) # ignoring the translations blob (template identifier)
EXCEPTIONS+=( "{}" "{0}" ) # ignoring the translations blob (template identifier)
GREP_ARGS=()
for exception in "${EXCEPTIONS[@]}"; do

Loading…
Cancel
Save