Repository: bigtop Updated Branches: refs/heads/master 83923cf39 -> 4158095e4
BIGTOP-1610: Fix /etc/profile.d/bigtop.sh scripts forgot to include debian variant fixup JAVA_HOME after BIGTOP-1609 Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/4158095e Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/4158095e Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/4158095e Branch: refs/heads/master Commit: 4158095e44bb601df99e50534ddfa41ea3e47993 Parents: 83923cf Author: Olaf Flebbe <[email protected]> Authored: Mon Jan 19 20:32:00 2015 +0100 Committer: Olaf Flebbe <[email protected]> Committed: Sat Jan 24 18:28:32 2015 +0100 ---------------------------------------------------------------------- bigtop_toolchain/files/jenkins.sh.centos | 2 +- bigtop_toolchain/files/jenkins.sh.debian | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/4158095e/bigtop_toolchain/files/jenkins.sh.centos ---------------------------------------------------------------------- diff --git a/bigtop_toolchain/files/jenkins.sh.centos b/bigtop_toolchain/files/jenkins.sh.centos index c063b93..5f90bc4 100644 --- a/bigtop_toolchain/files/jenkins.sh.centos +++ b/bigtop_toolchain/files/jenkins.sh.centos @@ -15,7 +15,7 @@ export MAVEN_HOME=/usr/local/maven export JAVA6_HOME=/usr/java/latest -export JAVA7_HOME=/usr/lib/jdk7-latest +export JAVA7_HOME=/usr/lib/jvm/java-1.7.0-openjdk export JAVA_HOME=$JAVA7_HOME export ANT_HOME=/usr/local/ant export FORREST_HOME=/usr/local/apache-forrest http://git-wip-us.apache.org/repos/asf/bigtop/blob/4158095e/bigtop_toolchain/files/jenkins.sh.debian ---------------------------------------------------------------------- diff --git a/bigtop_toolchain/files/jenkins.sh.debian b/bigtop_toolchain/files/jenkins.sh.debian new file mode 100644 index 0000000..3d1ef66 --- /dev/null +++ b/bigtop_toolchain/files/jenkins.sh.debian @@ -0,0 +1,24 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +export MAVEN_HOME=/usr/local/maven +export JAVA_HOME=/usr/lib/jvm/java-1.7.0-openjdk-amd64 +export ANT_HOME=/usr/local/ant +export FORREST_HOME=/usr/local/apache-forrest +export SCALA_HOME=/usr/share/java +export GRADLE_HOME=/usr/local/gradle +export PATH=$JAVA_HOME/bin:$MAVEN_HOME/bin:$ANT_HOME/bin:$FORREST_HOME/bin:$GRADLE_HOME/bin:$PATH + +export GRADLE_OPTS="-Dorg.gradle.daemon=true"
