From f40d926d16ec1e96c358d13e4107f4743e89d40f Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 21 Aug 2019 10:22:41 +0200 Subject: [PATCH] legacy: fix emulator bitcoin only build --- ci/build.yml | 11 +++++++++-- legacy/firmware/Makefile | 5 +---- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/ci/build.yml b/ci/build.yml index 64af5308f..fd9e6744f 100644 --- a/ci/build.yml +++ b/ci/build.yml @@ -94,5 +94,12 @@ build legacy emu: untracked: true 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 diff --git a/legacy/firmware/Makefile b/legacy/firmware/Makefile index 30e123fe7..cbe61fe69 100644 --- a/legacy/firmware/Makefile +++ b/legacy/firmware/Makefile @@ -26,11 +26,8 @@ OBJS += reset.o OBJS += signing.o OBJS += crypto.o -ifneq ($(U2F_ENABLED),0) -OBJS += u2f.o -endif - ifneq ($(BITCOIN_ONLY),1) +OBJS += u2f.o OBJS += ethereum.o OBJS += ethereum_tokens.o OBJS += lisk.o