Skip to content

Commit c699516

Browse files
committed
remove java8 build from workflows
1 parent bf5b89d commit c699516

File tree

2 files changed

+0
-55
lines changed

2 files changed

+0
-55
lines changed

.github/workflows/maven-master-pulls.yml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -57,29 +57,3 @@ jobs:
5757

5858
- name: Scan Maven build directory with Wiz
5959
run: ./wizcli dir scan --path ./ --tag java="${{ matrix.java }}"
60-
61-
build-java8:
62-
runs-on: ubuntu-latest
63-
strategy:
64-
matrix:
65-
java: [ 8 ]
66-
67-
steps:
68-
- uses: actions/checkout@v4
69-
- name: Set up Java
70-
uses: actions/setup-java@v4
71-
with:
72-
java-version: ${{ matrix.java }}
73-
distribution: temurin
74-
server-id: central
75-
server-username: MAVEN_USERNAME
76-
server-password: MAVEN_PASSWORD
77-
- name: Cache local Maven repository
78-
uses: actions/cache@v4
79-
with:
80-
path: ~/.m2/repository
81-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
82-
restore-keys: |
83-
${{ runner.os }}-maven-
84-
- name: Build with Maven
85-
run: mvn -B -U clean verify -DskipTests -Dmaven.test.skip=true -Dmaven.site.skip=true -Dmaven.javadoc.skip=true -Dmaven.jar.skip=true -Psamples-java8 --file pom.xml

.github/workflows/maven-master.yml

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -72,32 +72,3 @@ jobs:
7272
env:
7373
MAVEN_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
7474
MAVEN_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
75-
build-java8:
76-
77-
runs-on: ubuntu-latest
78-
strategy:
79-
matrix:
80-
java: [ 8 ]
81-
82-
steps:
83-
- uses: actions/checkout@v4
84-
- name: Set up Java
85-
uses: actions/setup-java@v4
86-
with:
87-
java-version: ${{ matrix.java }}
88-
distribution: temurin
89-
server-id: central
90-
server-username: MAVEN_USERNAME
91-
server-password: MAVEN_PASSWORD
92-
- name: Cache local Maven repository
93-
uses: actions/cache@v4
94-
with:
95-
path: ~/.m2/repository
96-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
97-
restore-keys: |
98-
${{ runner.os }}-maven-
99-
- name: Build with Maven
100-
run: mvn -B -U clean verify -DskipTests -Dmaven.test.skip=true -Dmaven.site.skip=true -Dmaven.javadoc.skip=true -Psamples-java8 --file pom.xml
101-
env:
102-
MAVEN_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
103-
MAVEN_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}

0 commit comments

Comments
 (0)