1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 19:09:10 +00:00
trezor-firmware/legacy/script/cibuild
2019-09-12 17:35:55 +02:00

30 lines
513 B
Bash
Executable File

#!/usr/bin/env bash
# script/cibuild: Setup environment for CI to run tests. This is primarily
# designed to run on the continuous integration server.
set -e
cd "$(dirname "$0")/.."
if [ "$EMULATOR" = 1 ]; then
make -C emulator
else
make -C vendor/libopencm3 lib/stm32/f2
fi
make
if [ "$EMULATOR" != 1 ]; then
make -C bootloader align
fi
make -C vendor/nanopb/generator/proto
make -C firmware/protob
make -C firmware
if [ "$EMULATOR" != 1 ]; then
make -C firmware sign
fi