You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2020/08/23 02:01:02 UTC

[logging-log4j2] 01/06: Remove Travis config in favor of GH Actions

This is an automated email from the ASF dual-hosted git repository.

mattsicker pushed a commit to branch release-2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git

commit b9ababc31f5788f9ba4ebaa7e6a9e459c954907f
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Sat Aug 22 19:17:42 2020 -0500

    Remove Travis config in favor of GH Actions
    
    Signed-off-by: Matt Sicker <bo...@gmail.com>
---
 .travis-toolchains.xml | 53 --------------------------------------------------
 .travis.yml            | 39 -------------------------------------
 2 files changed, 92 deletions(-)

diff --git a/.travis-toolchains.xml b/.travis-toolchains.xml
deleted file mode 100644
index 502a57e..0000000
--- a/.travis-toolchains.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="UTF8"?>
-<!--
-  ~ 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.
-  -->
-<toolchains xmlns="http://maven.apache.org/TOOLCHAINS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/TOOLCHAINS/1.1.0 http://maven.apache.org/xsd/toolchains-1.1.0.xsd">
-  <toolchain>
-    <type>jdk</type>
-    <provides>
-      <id>java7</id>
-      <version>1.7</version>
-      <vendor>oracle</vendor>
-    </provides>
-    <configuration>
-      <jdkHome>/usr/lib/jvm/java-7-openjdk-amd64</jdkHome>
-    </configuration>
-  </toolchain>
-  <toolchain>
-    <type>jdk</type>
-    <provides>
-      <id>java8</id>
-      <version>1.8</version>
-      <vendor>oracle</vendor>
-    </provides>
-    <configuration>
-      <jdkHome>/usr/lib/jvm/java-8-openjdk-amd64</jdkHome>
-    </configuration>
-  </toolchain>
-  <toolchain>
-    <type>jdk</type>
-    <provides>
-      <id>java11</id>
-      <version>11</version>
-      <vendor>oracle</vendor>
-    </provides>
-    <configuration>
-      <jdkHome>/home/travis/openjdk11</jdkHome>
-    </configuration>
-  </toolchain>
-</toolchains>
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 190a8b0..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-#   Licensed 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
-dist: trusty
-jdk:
-  - openjdk11
-
-env:
-  global:
-    JAVA_OPTS=-Xmx4g
-
-cache:
-  directories:
-    - "$HOME/.m2"
-before_cache:
-  - rm -rf $HOME/.m2/repository/org/apache/logging/log4j
-
-install:
-  - jdk_switcher use openjdk8
-  - mvn -t .travis-toolchains.xml install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
-
-script:
-  - $TRAVIS_BUILD_DIR/install-jdk.sh --install openjdk11 --target /home/travis/openjdk11
-  - jdk_switcher use openjdk8
-  - mvn -t .travis-toolchains.xml test -B -V
-
-after_success:
-  - jdk_switcher use openjdk8
-  - mvn -t .travis-toolchains.xml -pl !log4j-bom jacoco:prepare-agent test jacoco:report coveralls:report -B -V