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-compress.git
The following commit(s) were added to refs/heads/master by this push: new 8cdd0c8 Drop obsolete Travis build. 8cdd0c8 is described below commit 8cdd0c8837085e122712aac69bf1eaf57ef1e4b6 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Dec 23 08:48:10 2021 -0500 Drop obsolete Travis build. --- .travis.yml | 59 ----------------------------------------------------------- 1 file changed, 59 deletions(-) diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b42343e..0000000 --- a/.travis.yml +++ /dev/null @@ -1,59 +0,0 @@ -# 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. - -language: java - -cache: - directories: - - $HOME/.m2 - -# https://docs.travis-ci.com/user/reference/linux/ -# Must use a fixed distribution (and remember to occassionally upgrade..) -# Try to force to use the latest Java 11 instead of 11.0.2 to fix -# https://bugs.openjdk.java.net/browse/JDK-8212233 -# dist: bionic - -jdk: - - openjdk8 - - openjdk11 - - openjdk15 -# - openjdk-ea -# currently fails on Java 17-ea with "Unable to make protected final java.lang.Class java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int) throws java.lang.ClassFormatError accessible: module java.base does not "opens java.lang" to unnamed module" - -matrix: -# Remove the outdated OpenJDK 11.0.2 which Travis image grabbed from java.net in -# https://github.com/travis-ci/travis-cookbooks/blob/master/cookbooks/travis_jdk/files/install-jdk.sh#L200 -# (which has 11.0.2 hard-coded!), and instead replace it with the latest openjdk-11-jdk-headless Ubuntu package. -# NB /usr/local/lib/jvm/openjdk11/bin is also on the PATH, but there's no need to change it (because we rm -rf anyway) -# include: -# - stage: Install -# name: "Updating Java 11..." -# jdk: openjdk11 -# before_install: -# - echo $JAVA_HOME -# - which java -# - sudo rm -rf /usr/local/lib/jvm/ -# - sudo apt-get install -y openjdk-11-jdk-headless -# - export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64/ -# - which java -# - java -version -# - $JAVA_HOME/bin/java -version - -# TEMP -Ddoclint=none -script: - - mvn -V --no-transfer-progress -Ddoclint=none - -after_success: - - mvn -V --no-transfer-progress clean test jacoco:report coveralls:report -Ptravis-jacoco javadoc:javadoc -Ddoclint=none