sekikn opened a new pull request #663: URL: https://github.com/apache/bigtop/pull/663
With this PR, we can pass some options from Jenkins to the `docker run` command for avoiding the problem reported as BIGTOP-3392. I confirmed that the specified options were passed to the `docker run` command, as follows: ``` $ ./gradlew -Pprefix=trunk -POS=debian-9 -Pdocker-run-option="-v $HOME/.m2:/root/.m2" bigtop-utils-pkg-ind (snip) ++ docker run -d -v /home/sekikn/.m2:/root/.m2 bigtop/slaves:trunk-debian-9 /sbin/init (snip) BUILD SUCCESSFUL in 6m 15s 1 actionable task: 1 executed ``` ``` $ ./gradlew -Pprefix=trunk -POS=debian-9 -Pdocker-run-option="-v $HOME/.m2:/root/.m2" repo-ind (snip) ++ docker run -d -v /home/sekikn/.m2:/root/.m2 bigtop/slaves:trunk-debian-9 /sbin/init (snip) BUILD SUCCESSFUL in 5m 14s 1 actionable task: 1 executed ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
