diff --git a/.coveralls.yml b/.coveralls.yml deleted file mode 100644 index 91600595a..000000000 --- a/.coveralls.yml +++ /dev/null @@ -1 +0,0 @@ -service_name: travis-ci diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml deleted file mode 100644 index c3e55b630..000000000 --- a/.github/workflows/maven.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. - -name: GitHub CI - -on: - push: - branches: - - master - pull_request: - branches: - - master - -jobs: - build: - - strategy: - matrix: - os: [ubuntu-latest, windows-latest] - java: [8, 11] - fail-fast: false - - runs-on: ${{ matrix.os }} - - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Set up cache for ~./m2/repository - uses: actions/cache@v2.1.7 - with: - path: ~/.m2/repository - key: maven-${{ matrix.os }}-java${{ matrix.java }}-${{ hashFiles('**/pom.xml') }} - restore-keys: | - maven-${{ matrix.os }}-java${{ matrix.java }}- - maven-${{ matrix.os }}- - - - name: Set up JDK - uses: actions/setup-java@v2 - with: - distribution: adopt - java-version: ${{ matrix.java }} - - - name: Build with Maven - run: mvn -e -B -V verify diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 1f48890b7..000000000 --- a/.travis.yml +++ /dev/null @@ -1,32 +0,0 @@ -# TravisCI is used mainly for SonarCloud and Coveralls quality integrations - -language: java -dist: bionic -sudo: false - -# Build only PRs and master branch -if: type = pull_request OR branch = master - -# required for SonarCloud -git: - depth: false - -jdk: - - openjdk11 - -install: skip # skip install phase as no deps are required - -# enable-jacoco profile is coming from the parent pom: -# https://github.com/jenkinsci/plugin-pom/blob/master/pom.xml -script: - - mvn -Penable-jacoco clean verify coveralls:report - -before_cache: - - rm -fr $HOME/.m2/repository/org/jenkins-ci/plugins/jira - -cache: - directories: - - "$HOME/.m2/repository" - -notifications: - email: false