From c94154e62240e3b59c3649df77df3dbc1682f91e Mon Sep 17 00:00:00 2001 From: Tglman Date: Wed, 8 Nov 2023 16:12:17 +0100 Subject: [PATCH] chore: removed base tests removed configuration already handle by execution matrix --- .github/workflows/maven_java_11.yml | 35 ------------------- .github/workflows/maven_java_17.yml | 35 ------------------- .../workflows/{maven_java_8.yml => tests.yml} | 0 3 files changed, 70 deletions(-) delete mode 100644 .github/workflows/maven_java_11.yml delete mode 100644 .github/workflows/maven_java_17.yml rename .github/workflows/{maven_java_8.yml => tests.yml} (100%) diff --git a/.github/workflows/maven_java_11.yml b/.github/workflows/maven_java_11.yml deleted file mode 100644 index 21078944fae..00000000000 --- a/.github/workflows/maven_java_11.yml +++ /dev/null @@ -1,35 +0,0 @@ -# This workflow will build a Java project with Maven -# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven - -name: Java 11 CI with Maven - -on: - push: - branches: [ develop, 3.1.x, 3.0.x ] - pull_request: - branches: [ develop, 3.1.x, 3.0.x ] - -permissions: - contents: read - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - name: Set up JDK 11 - uses: actions/setup-java@v3 - with: - java-version: '11' - distribution: 'temurin' - - name: Cache - uses: actions/cache@v3 - with: - path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- - - name: Build with Maven - run: mvn -B package --file pom.xml diff --git a/.github/workflows/maven_java_17.yml b/.github/workflows/maven_java_17.yml deleted file mode 100644 index 32db298032c..00000000000 --- a/.github/workflows/maven_java_17.yml +++ /dev/null @@ -1,35 +0,0 @@ -# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time -# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven - -name: Java 17 CI with Maven - -on: - push: - branches: [ develop ] - pull_request: - branches: [ develop ] - -permissions: - contents: read - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: '17' - distribution: 'temurin' - - name: Cache - uses: actions/cache@v3 - with: - path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- - - name: Build with Maven - run: mvn -B package --file pom.xml diff --git a/.github/workflows/maven_java_8.yml b/.github/workflows/tests.yml similarity index 100% rename from .github/workflows/maven_java_8.yml rename to .github/workflows/tests.yml