Skip to content

Commit c437642

Browse files
committed
chore(ci): rename snapshots workflow, add next, only keep unit tests (#859)
1 parent b006d98 commit c437642

File tree

1 file changed

+3
-16
lines changed

1 file changed

+3
-16
lines changed

.github/workflows/master-snapshot-release.yml renamed to .github/workflows/snapshot-releases.yml

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,34 +8,21 @@ concurrency:
88
cancel-in-progress: true
99
on:
1010
push:
11-
branches: [ main, v1 ]
11+
branches: [ main, v1, next ]
1212
workflow_dispatch:
1313
jobs:
1414
test:
1515
runs-on: ubuntu-latest
16-
strategy:
17-
matrix:
18-
java: [ 11, 17 ]
19-
distribution: [ temurin ]
20-
kubernetes: [ 'v1.17.13','v1.18.20','v1.19.14','v1.20.10','v1.21.4', 'v1.22.1', 'v1.23.0' ]
2116
steps:
2217
- uses: actions/checkout@v2
2318
- name: Set up Java and Maven
2419
uses: actions/setup-java@v2
2520
with:
26-
distribution: ${{ matrix.distribution }}
27-
java-version: ${{ matrix.java }}
21+
distribution: temurin
22+
java-version: 11
2823
cache: 'maven'
2924
- name: Run unit tests
3025
run: ./mvnw ${MAVEN_ARGS} -B test --file pom.xml
31-
- name: Set up Minikube
32-
uses: manusa/actions-setup-minikube@v2.4.3
33-
with:
34-
minikube version: 'v1.24.0'
35-
kubernetes version: ${{ matrix.kubernetes }}
36-
driver: 'docker'
37-
- name: Run integration tests
38-
run: ./mvnw ${MAVEN_ARGS} -B package -P no-unit-tests --file pom.xml
3926
release-snapshot:
4027
runs-on: ubuntu-latest
4128
needs: test

0 commit comments

Comments
 (0)