From 9b55dbb48679c5f4028e16020d46e055a99bc599 Mon Sep 17 00:00:00 2001 From: Luca Favatella Date: Tue, 30 Dec 2014 09:28:05 +0000 Subject: [PATCH 1/2] Expose creation of test.img in top Makefile --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9960fb1..9216cb6 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -.PHONY: default bc core apps railing test install checkotp +.PHONY: default bc core apps railing test install checkotp test.img include Config.mk @@ -27,3 +27,6 @@ test: install: bc core apps railing install railing/railing /usr/bin + +test.img: railing + $(MAKE) -C test test.img From c426fcc8ca06217d0ae877d9969913e61225be07 Mon Sep 17 00:00:00 2001 From: Luca Favatella Date: Tue, 30 Dec 2014 09:28:59 +0000 Subject: [PATCH 2/2] Test creation of test.img on CI --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index af3b746..ddfc298 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ sudo: false language: erlang otp_release: 17.3 -script: make && railing/railing image +script: make && railing/railing image && make test.img