You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by ev...@apache.org on 2019/02/25 09:56:21 UTC

[bigtop] branch master updated: BIGTOP-3174. ./gradlew repo-ind failed on Bigtop build slaves (#481)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 24fc581  BIGTOP-3174. ./gradlew repo-ind failed on Bigtop build slaves (#481)
24fc581 is described below

commit 24fc581c639c5744889763ce9f72978b6ea10efb
Author: Evans Ye <ev...@apache.org>
AuthorDate: Mon Feb 25 17:56:16 2019 +0800

    BIGTOP-3174. ./gradlew repo-ind failed on Bigtop build slaves (#481)
---
 packages.gradle | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/packages.gradle b/packages.gradle
index af2e6ef..fb02472 100644
--- a/packages.gradle
+++ b/packages.gradle
@@ -811,9 +811,11 @@ task "repo-ind" (
   def _prefix = project.hasProperty("prefix") ? prefix : "trunk"
   def _OS = project.hasProperty("OS") ? OS : "centos-7"
   def command = [
-      'docker', 'run', '--rm', '--volume', BASE_DIR + ':/bigtop-home', '--workdir', '/bigtop-home',
-      'bigtop/slaves:' + _prefix + '-' + _OS,
-      './gradlew', 'repo'
+      'bash', '-x',
+      './bigtop-ci/build.sh',
+      '--prefix', _prefix,
+      '--os', _OS,
+      '--target', 'repo'
   ]
   exec {
     workingDir BASE_DIR