This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-pool.git
The following commit(s) were added to refs/heads/master by this push: new 8139f80 Adding power support (#21) 8139f80 is described below commit 8139f80d6ec34b472f738e48e8b1401f7fb72fbc Author: ghatwala <ghatw...@us.ibm.com> AuthorDate: Tue Jul 23 02:56:30 2019 +0530 Adding power support (#21) * Adding power support Ensuring this repo builds on ppc64le added the support here. * Update .travis.yml * Update .travis.yml * Update .travis.yml --- .travis.yml | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1df4fe8..f545b97 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,18 +14,27 @@ # limitations under the License. language: java +matrix: + include: + - os: linux + jdk: openjdk8 + - os: linux + jdk: openjdk11 + - os: linux + jdk: openjdk12 + - os: linux + jdk: openjdk-ea + - os: linux + jdk: oraclejdk8 + - os: linux + jdk: oraclejdk11 + - os: linux-ppc64le + jdk: openjdk8 + sudo: false -jdk: - - openjdk8 - - openjdk11 - - openjdk12 - - openjdk-ea - - oraclejdk8 - - oraclejdk11 - script: - mvn after_success: - - mvn clean cobertura:cobertura coveralls:report -Ptravis-cobertura \ No newline at end of file + - mvn clean cobertura:cobertura coveralls:report -Ptravis-cobertura