Skip to content

Commit 467ee8b

Browse files
kdavisk6velo
authored andcommitted
Disabling JDK 11 Builds in Travis (OpenFeign#771)
Releasing when more than one JDK is specified attempts to create the tag twice. This change removes the JDK 11 build profile.
1 parent 7bff1a5 commit 467ee8b

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

.travis.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Run `travis lint` when changing this file to avoid breaking the build.
22
# Default JDK is really old: 1.8.0_31; Trusty's is less old: 1.8.0_51
33
# https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments
4-
sudo: required
54
dist: trusty
65
sudo: false
76
language: java
7+
jdk: oraclejdk8
88
before_install:
99
# Parameters used during release
1010
- git config user.name "$GH_USER"
@@ -24,16 +24,16 @@ cache:
2424
directories:
2525
- $HOME/.m2
2626

27-
matrix:
28-
include:
29-
- os: linux
30-
jdk: oraclejdk8
31-
addons:
32-
apt:
33-
packages:
34-
- oracle-java8-installer
35-
- os: linux
36-
jdk: openjdk11
27+
#matrix:
28+
# include:
29+
# - os: linux
30+
# jdk: oraclejdk8
31+
# addons:
32+
# apt:
33+
# packages:
34+
# - oracle-java8-installer
35+
# - os: linux
36+
# jdk: openjdk11
3737

3838
# Don't build release tags. This avoids publish conflicts because the version commit exists both on master and the release tag.
3939
# See https://github.com/travis-ci/travis-ci/issues/1532

0 commit comments

Comments
 (0)