This is an automated email from the ASF dual-hosted git repository. vy pushed a commit to branch LOG4J2-3628 in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit e3b3ea50a0b420cd094f5c9f5e4418dfaeb1b68c Author: Volkan Yazıcı <[email protected]> AuthorDate: Thu Nov 24 19:23:26 2022 +0100 Remove incorrectly committed `workflows` directory. --- workflows/maven-toolchains.xml | 37 ---------------------------- workflows/maven.yml | 55 ------------------------------------------ 2 files changed, 92 deletions(-) diff --git a/workflows/maven-toolchains.xml b/workflows/maven-toolchains.xml deleted file mode 100644 index 066a50ff2f..0000000000 --- a/workflows/maven-toolchains.xml +++ /dev/null @@ -1,37 +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> - <toolchain> - <type>jdk</type> - <provides> - <version>1.8</version> - </provides> - <configuration> - <jdkHome>${env.JAVA_HOME_8_X64}</jdkHome> - </configuration> - </toolchain> - <toolchain> - <type>jdk</type> - <provides> - <version>11</version> - </provides> - <configuration> - <jdkHome>${env.JAVA_HOME_11_X64}</jdkHome> - </configuration> - </toolchain> -</toolchains> diff --git a/workflows/maven.yml b/workflows/maven.yml deleted file mode 100644 index d6338a6e34..0000000000 --- a/workflows/maven.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: Maven - -on: [push] - -jobs: - build: - - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-latest, windows-latest] - - steps: - - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Setup Maven caching - uses: actions/cache@v2 - with: - path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- - - - name: Setup JDK 11 - uses: actions/setup-java@v1 - with: - java-version: 11 - java-package: jdk - architecture: x64 - - - name: Setup JDK 8 - uses: actions/setup-java@v1 - with: - java-version: 8 - java-package: jdk - architecture: x64 - - - name: Inspect environment (Linux) - if: runner.os == 'Linux' - run: env | grep '^JAVA' - - - name: Build with Maven (Linux) - if: runner.os == 'Linux' - run: ./mvnw -V -B -e -DtrimStackTrace=false verify --global-toolchains .github/workflows/maven-toolchains.xml - - - name: Inspect environment (Windows) - if: runner.os == 'Windows' - run: set java - - - name: Build with Maven (Windows) - if: runner.os == 'Windows' - run: ./mvnw -V -B -e -DtrimStackTrace=false verify --global-toolchains ".github\workflows\maven-toolchains.xml"
