You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by om...@apache.org on 2020/03/27 19:52:27 UTC

[orc] branch master updated: Minor fix for docker script.

This is an automated email from the ASF dual-hosted git repository.

omalley pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/master by this push:
     new 95ed2cb  Minor fix for docker script.
95ed2cb is described below

commit 95ed2cb7b4a90c3ed6586dd255188282a7810541
Author: Owen O'Malley <om...@apache.org>
AuthorDate: Fri Mar 27 12:51:30 2020 -0700

    Minor fix for docker script.
    
    Signed-off-by: Owen O'Malley <om...@apache.org>
---
 docker/run-all.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/run-all.sh b/docker/run-all.sh
index 8f1436b..81876f4 100755
--- a/docker/run-all.sh
+++ b/docker/run-all.sh
@@ -29,6 +29,7 @@ function failure {
     grep -h "FAILED " logs/*-test.log
     exit 1
 }
+rm -f logs/pids.txt logs/*.log
 
 start=`date`
 for os in `cat os-list.txt`; do
@@ -36,7 +37,6 @@ for os in `cat os-list.txt`; do
   ( cd $os && docker build -t "orc-$os" . ) > logs/$os-build.log 2>&1 || exit 1
 done
 testStart=`date`
-rm -f logs/pids.txt
 
 for os in `cat os-list.txt`; do
     ./run-one.sh $1 $2 $os > logs/$os-test.log 2>&1 &