You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sebb <se...@gmail.com> on 2017/05/28 10:24:02 UTC

Fwd: [JENKINS] fixing builds that require less than Java 7

There are now JDK variables defined across all nodes, so step 3 can be
simplified:

3) Add the definition of JAVA_1_N_HOME to the job:
Under Build Environment / Tool Environment:
Tick JDK_1_6_LATEST__HOME (for example)

Under Pre Steps / Properties Content, add the following definition
(adjust as necessary)

JAVA_1_6_HOME=${JDK_1_6_LATEST__HOME}

---------- Forwarded message ----------
From: sebb <se...@gmail.com>
Date: 9 March 2017 at 12:29
Subject: [JENKINS] fixing builds that require less than Java 7
To: CommonsDev <de...@commons.apache.org>


Jenkins now requires Java 7 for running Maven builds

However it is possible to use the -Pjava-1.6 (etc) profiles to
continue to build with the target JVM

1) Update the main JVM to at least 1.7 so Jenkins-Maven works

2) add -Pjava-1.n to the Maven command line

3) Add the definition of JAVA_1_N_HOME to the job:

Build Environment
Inject environment variables to the build process
Properties Content: JAVA_1_N_HOME=/home/jenkins/tools/java/latest1.N/

The path in the above line is taken from:

https://cwiki.apache.org/confluence/display/INFRA/JDK+Installation+Matrix

This is the approach used in Commons Validator, Net, Pool (and now CLI)

As an alternative, the JAVA_1_N_HOME variable can be defined in terms
of one of the 'Tool Environment' variables. e.g.

JAVA_1_5_HOME=${JDK_1_5_LATEST__HOME}

This avoids having to use the actual path name.

Unfortunately there don't seem to be any Java settings that apply to
all nodes; the Windows paths and names are different from the Ubuntu
ones.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
For additional commands, e-mail: dev-help@commons.apache.org


Re: [JENKINS] fixing builds that require less than Java 7

Posted by sebb <se...@gmail.com>.
On 28 May 2017 at 11:24, sebb <se...@gmail.com> wrote:
> There are now JDK variables defined across all nodes, so step 3 can be
> simplified:
>
> 3) Add the definition of JAVA_1_N_HOME to the job:
> Under Build Environment / Tool Environment:
> Tick JDK_1_6_LATEST__HOME (for example)
>
> Under Pre Steps / Properties Content, add the following definition

Sorry, that should be

Pre Steps / Inject Environment variables then update "Properties Content"

> (adjust as necessary)
>
> JAVA_1_6_HOME=${JDK_1_6_LATEST__HOME}
>
> ---------- Forwarded message ----------
> From: sebb <se...@gmail.com>
> Date: 9 March 2017 at 12:29
> Subject: [JENKINS] fixing builds that require less than Java 7
> To: CommonsDev <de...@commons.apache.org>
>
>
> Jenkins now requires Java 7 for running Maven builds
>
> However it is possible to use the -Pjava-1.6 (etc) profiles to
> continue to build with the target JVM
>
> 1) Update the main JVM to at least 1.7 so Jenkins-Maven works
>
> 2) add -Pjava-1.n to the Maven command line
>
> 3) Add the definition of JAVA_1_N_HOME to the job:
>
> Build Environment
> Inject environment variables to the build process
> Properties Content: JAVA_1_N_HOME=/home/jenkins/tools/java/latest1.N/
>
> The path in the above line is taken from:
>
> https://cwiki.apache.org/confluence/display/INFRA/JDK+Installation+Matrix
>
> This is the approach used in Commons Validator, Net, Pool (and now CLI)
>
> As an alternative, the JAVA_1_N_HOME variable can be defined in terms
> of one of the 'Tool Environment' variables. e.g.
>
> JAVA_1_5_HOME=${JDK_1_5_LATEST__HOME}
>
> This avoids having to use the actual path name.
>
> Unfortunately there don't seem to be any Java settings that apply to
> all nodes; the Windows paths and names are different from the Ubuntu
> ones.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
For additional commands, e-mail: dev-help@commons.apache.org