You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2016/01/29 23:12:00 UTC

[2/3] mesos git commit: Updated docker_build.sh to generate xml output for all OSes.

Updated docker_build.sh to generate xml output for all OSes.

Review: https://reviews.apache.org/r/42928


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/397f0b7e
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/397f0b7e
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/397f0b7e

Branch: refs/heads/master
Commit: 397f0b7e8d2730b8a81fc8b1770865d4259a9a3e
Parents: 01d0151
Author: Vinod Kone <vi...@gmail.com>
Authored: Wed Jan 27 13:25:08 2016 -0800
Committer: Vinod Kone <vi...@gmail.com>
Committed: Fri Jan 29 14:11:17 2016 -0800

----------------------------------------------------------------------
 support/docker_build.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/397f0b7e/support/docker_build.sh
----------------------------------------------------------------------
diff --git a/support/docker_build.sh b/support/docker_build.sh
index da94be8..f43f850 100755
--- a/support/docker_build.sh
+++ b/support/docker_build.sh
@@ -66,9 +66,6 @@ case $OS in
 
     # Disable any tests failing on Ubuntu.
     append_dockerfile "ENV GTEST_FILTER -FsTest.FileSystemTableRead"
-
-    # Generate xml reports to be displayed by jenkins xUnit plugin.
-    append_dockerfile "ENV GTEST_OUTPUT xml:report.xml"
     ;;
   *)
     echo "Unknown OS $OS"
@@ -91,6 +88,9 @@ case $COMPILER in
     ;;
 esac
 
+# Generate xml reports to be displayed by jenkins xUnit plugin.
+append_dockerfile "ENV GTEST_OUTPUT xml:report.xml"
+
 # Set working directory.
 append_dockerfile "WORKDIR mesos"