1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-25 08:58:14 +00:00

legacy: fix emulator bitcoin only build

This commit is contained in:
Pavol Rusnak 2019-08-21 10:22:41 +02:00
parent 5b3427a21d
commit f40d926d16
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 10 additions and 6 deletions

View File

@ -94,5 +94,12 @@ build legacy emu:
untracked: true untracked: true
expire_in: 1 day expire_in: 1 day
build legacy emu bitcoinonly:
stage: build
variables:
BITCOIN_ONLY: "1"
DEBUG_LINK: "1"
EMULATOR: "1"
script:
- cd legacy
- pipenv run script/cibuild

View File

@ -26,11 +26,8 @@ OBJS += reset.o
OBJS += signing.o OBJS += signing.o
OBJS += crypto.o OBJS += crypto.o
ifneq ($(U2F_ENABLED),0)
OBJS += u2f.o
endif
ifneq ($(BITCOIN_ONLY),1) ifneq ($(BITCOIN_ONLY),1)
OBJS += u2f.o
OBJS += ethereum.o OBJS += ethereum.o
OBJS += ethereum_tokens.o OBJS += ethereum_tokens.o
OBJS += lisk.o OBJS += lisk.o