forked from operator-framework/java-operator-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (63 loc) · 2.17 KB
/
pr.yml
File metadata and controls
66 lines (63 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Verify Pull Request
env:
MAVEN_ARGS: -V -ntp -e
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'adr/**'
branches: [ main, v1, v2, v3, next ]
workflow_dispatch:
jobs:
check_format_and_unit_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Java and Maven
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: 'maven'
- name: Check code format
run: |
./mvnw ${MAVEN_ARGS} formatter:validate -Dconfigfile=$PWD/contributing/eclipse-google-style.xml -pl '!operator-framework-bom' --file pom.xml
./mvnw ${MAVEN_ARGS} impsort:check -pl '!operator-framework-bom' --file pom.xml
- name: Run unit tests
run: ./mvnw ${MAVEN_ARGS} -B test --file pom.xml
integration_tests:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 17 ]
kubernetes: [ 'v1.22.15', 'v1.23.12', 'v1.24.6', 'v1.25.2' ]
steps:
- uses: actions/checkout@v3
- name: Set up Java and Maven
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Set up Minikube
uses: manusa/actions-setup-minikube@v2.7.1
with:
minikube version: 'v1.26.0'
kubernetes version: ${{ matrix.kubernetes }}
driver: 'docker'
github token: ${{ secrets.GITHUB_TOKEN }}
- name: Run integration tests
run: ./mvnw ${MAVEN_ARGS} -B package -P no-unit-tests --file pom.xml
- name: Adjust Minikube Min Request Timeout Setting
uses: manusa/actions-setup-minikube@v2.7.0
with:
minikube version: 'v1.26.0'
kubernetes version: ${{ matrix.kubernetes }}
driver: 'docker'
start args: '--extra-config=apiserver.min-request-timeout=3'
github token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Special Integration Tests
run: ./mvnw ${MAVEN_ARGS} -B package -P minimal-watch-timeout-dependent-it --file pom.xml