aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJacob Torrey <discipleofranok@gmail.com>2016-08-26 13:50:03 -0600
committerJacob Torrey <torreyj@ainfosec.com>2016-08-26 14:06:35 -0600
commite0bf02a6ce17bbcd8a91743dd3273a6d33040598 (patch)
tree7d07dd45c2d506b760b74a27c93a05e0ef3347d5 /Makefile
parentUpdate badge to point to monero's coveralls (diff)
downloadmonero-e0bf02a6ce17bbcd8a91743dd3273a6d33040598.tar.xz
Streamline release-test target
When Travis builds and tests, time is limited per build, so the overhead of re-calling CMake can push it over the limit.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cade2b8aa..5817a8a6b 100644
--- a/Makefile
+++ b/Makefile
@@ -50,9 +50,9 @@ cmake-release:
release: cmake-release
cd build/release && $(MAKE)
-release-test: release
+release-test:
mkdir -p build/release
- cd build/release && cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE) test
+ cd build/release && cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE) && $(MAKE) test
release-all:
mkdir -p build/release