mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 14:59:44 +00:00
16 lines
243 B
Plaintext
16 lines
243 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
# script/cibuild_intermediate_fw:
|
||
|
# Setup environment for CI to build intermediate firmware.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd "$(dirname "$0")/.."
|
||
|
|
||
|
make -C vendor/libopencm3 lib/stm32/f2
|
||
|
|
||
|
make libtrezor.a
|
||
|
|
||
|
make -C intermediate_fw all sign
|
||
|
|