Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run CI with java 17 #1656

Merged
merged 4 commits into from
Jun 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ commands:
- run:
name: 'Resolving Dependencies'
command: |
mvn dependency:resolve-plugins go-offline:resolve-dependencies -DskipTests=true
mvn dependency:resolve-plugins go-offline:resolve-dependencies -DskipTests=true -B
verify-formatting:
steps:
- run:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- run:
name: 'Test'
command: |
mvn -o test
mvn -B test
- verify-formatting
android-test:
# These next lines define the Android machine image executor: https://circleci.com/docs/2.0/executor-types/
Expand Down Expand Up @@ -191,8 +191,8 @@ workflows:
filters:
<<: *all-branches
- test:
jdk: '14-buster'
name: 'jdk 14'
jdk: '17-buster'
name: 'jdk 17'
filters:
<<: *all-branches
- test:
Expand All @@ -212,8 +212,8 @@ workflows:
filters:
<<: *master-only
- test:
jdk: '14-buster'
name: 'jdk 14'
jdk: '17-buster'
name: 'jdk 17'
filters:
<<: *master-only
- deploy:
Expand All @@ -222,7 +222,7 @@ workflows:
requires:
- 'jdk 8'
- 'jdk 11'
- 'jdk 14'
- 'jdk 17'
context: Sonatype
filters:
<<: *master-only
Expand Down
2 changes: 1 addition & 1 deletion apt-test-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
</activation>

<properties>
<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
<jvm.options>--add-opens jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</jvm.options>
</properties>
</profile>
Expand Down