Skip to content

Commit

Permalink
ci: build and test with JDK 19
Browse files Browse the repository at this point in the history
  • Loading branch information
stklcode committed Oct 26, 2022
1 parent 81decd1 commit 30996e9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: default

steps:
- name: compile
image: maven:3-openjdk-17
image: maven:3-eclipse-temurin-17
commands:
- mvn -B clean compile
when:
Expand All @@ -14,7 +14,7 @@ steps:
- fix/*
- release/*
- name: unit-tests
image: maven:3-openjdk-17
image: maven:3-eclipse-temurin-17
commands:
- mvn -B test
when:
Expand All @@ -38,9 +38,9 @@ steps:
- main
- release/*
- name: unit-integration-tests
image: maven:3-openjdk-17
image: maven:3-eclipse-temurin-17
environment:
VAULT_VERSION: 1.11.2
VAULT_VERSION: 1.12.0
commands:
- export PATH=.bin:$${PATH}
- mvn -B -P integration-test verify
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
jdk: [ 11, 17, 18 ]
jdk: [ 11, 17, 19 ]
vault: [ '1.2.0', '1.11.4', '1.12.0' ]
include:
- jdk: 17
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

### Test
* Tested against Vault 1.2.0 to 1.12.0
* Disable AppID tests for Vault 1.12 and above (auth method removed)
* Disable AppID tests for Vault 1.12 and above (auth method removed)
* Tested with Java 19


## 1.1.1 (2022-08-29)
Expand Down

0 comments on commit 30996e9

Please sign in to comment.