From 506f9c29d99cb010514e6e00c7f800422d656451 Mon Sep 17 00:00:00 2001 From: Cecile Tonglet Date: Thu, 30 Jan 2020 09:54:10 +0100 Subject: [PATCH] Remove --release from check_for_exit.sh (#4775) I don't see any good reason to build with --release to test this but this step takes 8-8:30 min on the CI and I suspect we would save some time by using the debug build instead. --- substrate/.maintain/check_for_exit.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/substrate/.maintain/check_for_exit.sh b/substrate/.maintain/check_for_exit.sh index c5a54eb83b..edc2130e57 100755 --- a/substrate/.maintain/check_for_exit.sh +++ b/substrate/.maintain/check_for_exit.sh @@ -4,8 +4,8 @@ set -e -cargo build --release -./target/release/substrate --dev & +cargo build +./target/debug/substrate --dev & PID=$! # Let the chain running for 60 seconds