Skip to content

Commit 26a2bc3

Browse files
committed
add readiness health check support in client
add integration test Upgrade JUnit4 to JUnit5 Java 17 and 21 CI is now manually triggered ala workflow_dispatch Revert removal of Test import * make sure that we also compile the integration tests during Github CI updates Conditonal CloudFoundry version based test to JUnit 5 Do not use ExtendWith * when the extension has a mandatory field to initialize, because ExtendWith only works with default constructor Junit4 to Junit4 Integration Tests migration * add the extension registration declaratively (using an annotation) Modified getOrganizationId() & getSpaceId() as per V3 adding security groups v3 create api adding create security group impl and tests adding get security group api and tests adding get security group impl + test adding list security groups impl + api adding update security group api adding update security group api v3 impl adding security groups delete api v3 impl and tests adding bind running/staging security group v3 api adding bind impl adding unbind security group adding list running/staging api and tests adding create security group test adding integration tests adding integration tests fixing setup/teardown fixing integration tests refactoring integration tests Ignore .idea/ for real now Migration to Junit5 * tests from radoslav commits Make integration tests chatty * cause they have interesting things to display Add globally enabled Spotless apply; include integration-test mask off non-permission bits apply spotless formatting * on top of Hans Schulz "mask off non-permission bits" porting check route to v3 api porting delete orphaned routes pushing delete route cleaning up leftovers in tests applying default style and fixing missing imports PR #1194: rebase and format with spotless defaultApplication-api minor changes Modified Junit tests to adopt V3 changes. rebasing 1173 fix health check type serialization Update tcp-routes.yml Update tcp-routes.yml Update IntegrationTestConfiguration.java fix formatting test
1 parent 02b9882 commit 26a2bc3

File tree

944 files changed

+46823
-27960
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

944 files changed

+46823
-27960
lines changed

.DS_Store

8 KB
Binary file not shown.

.github/workflows/maven.yml renamed to .github/workflows/ci-java-17-and-21.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
name: Java CI
22

33
on:
4-
push:
5-
branches:
6-
- main
7-
pull_request:
8-
branches:
9-
- main
4+
workflow_dispatch:
105

116
jobs:
127
build:
138
runs-on: ubuntu-latest
149
strategy:
1510
matrix:
16-
java: [ 8, 11 ]
11+
java: [ 17, 21 ]
1712
name: Java ${{ matrix.java }} build
1813
steps:
1914
- uses: actions/checkout@v4
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Java CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
java: [ 8, 11 ]
17+
name: Java ${{ matrix.java }} build
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: Prepare multi-module build
21+
run: |
22+
git submodule update --init --recursive
23+
- name: Set up Java
24+
uses: actions/setup-java@v3
25+
with:
26+
distribution: liberica
27+
java-version: ${{ matrix.java }}
28+
- name: Cache Maven packages
29+
uses: actions/cache@v3
30+
with:
31+
path: ~/.m2
32+
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
33+
restore-keys: ${{ runner.os }}-m2
34+
- name: Build with Maven
35+
run: ./mvnw clean package -Dgpg.skip
36+
- name: Compile integration tests
37+
run: ./mvnw -Pintegration-test test-compile compile
38+
- if: ${{ matrix.java != 8 }}
39+
name: Check style with Spotless
40+
run: ./mvnw spotless:check -Pintegration-test
41+

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
.idea/
2+
.vscode/
23
target/
34
bin/
45
.project
56
.classpath
67
.settings/
78
.factorypath
89
.gradle
9-
.history
10+
.history/

.idea/.name

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)