Skip to content

Commit

Permalink
Exclude the documentation module from test build, so we can test with…
Browse files Browse the repository at this point in the history
… JDK8
  • Loading branch information
davidwheeler123 committed Dec 8, 2023
1 parent 8fc117f commit 87d0777
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
job-id: jdk${{ matrix.jdk }}-build-test
properties: |
postgresVersions=${{ matrix.pg }}
arguments: test -x checkstyleMain -x checkstyleTest
arguments: test -x checkstyleMain -x checkstyleTest -PskipDocs=true

deploy:
needs: [check, build]
Expand Down
4 changes: 3 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ include(":pgjdbc-ng")
project(":pgjdbc-ng").projectDir = file("driver")

include(":udt-gen")
include(":documentation")
if (!startParameter.projectProperties["skipDocs"].toBoolean()) {
include(":documentation")
}

0 comments on commit 87d0777

Please sign in to comment.