This is an automated email from the ASF dual-hosted git repository. jtulach pushed a commit to branch UpdatingTravis in repository https://gitbox.apache.org/repos/asf/netbeans-html4j.git
commit ca484da899ecd85a172a424c62e2f28b6036386c Author: Jaroslav Tulach <[email protected]> AuthorDate: Sun Sep 29 21:31:43 2019 +0200 Adjusting to changes in travis setup --- .travis.yml | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 760d926..6ef826c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,9 +17,11 @@ # under the License. # language: java -jdk: - - oraclejdk8 - - openjdk11 +services: + - xvfb +before_install: + - sudo apt-get -qq update || echo no sudo apt-get + - sudo apt-get install -y libwebkitgtk-3.0-0 || echo no sudo apt-get before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start || echo No X11 @@ -29,8 +31,21 @@ script: - mvn install -DskipTests $ARGS - mvn verify $ARGS -os: - - linux +matrix: + include: + - os: linux + dist: trusty + jdk: openjdk8 + env: + - ARGS=-Dnone + - os: linux + dist: trusty + jdk: openjdk11 + env: + - ARGS=-Dnone + - os: osx + osx_image: xcode9.3 + jdk: openjdk11 + env: + - ARGS=-Dnone -env: - - ARGS=-Dnone --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
