From df85afbc6309416746e481191de458a4bbe5db5a Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Tue, 28 Jul 2020 20:32:30 +1000 Subject: [PATCH] Delete maven.yml --- .github/workflows/maven.yml | 38 ------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml deleted file mode 100644 index 936b4e403621..000000000000 --- a/.github/workflows/maven.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: GitHub CI - -on: [push, pull_request] - -jobs: - build: - - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macOS-latest] - java: [11, 14, 15-ea] - fail-fast: false - - runs-on: ${{ matrix.os }} - - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Set up cache for ~./m2/repository - uses: actions/cache@v1 - 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@v1 - with: - java-version: ${{ matrix.java }} - - - name: Build with Maven - run: mvn verify -e -B -V -Premote-session-tests -Pci -fae "-Dmaven.test.failure.ignore=true" "-Djetty.testtracker.log=true" - - - name: Javadoc with Maven - run: mvn -e -B -V package source:jar javadoc:jar javadoc:aggregate-jar -Peclipse-release -DskipTests -Dpmd.skip=true -Dcheckstyle.skip=true