-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: Christoph Kuhnke <[email protected]>
- Loading branch information
1 parent
70b4540
commit 8b88d4b
Showing
37 changed files
with
588 additions
and
208 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
pull_request: | ||
|
||
jobs: | ||
test: | ||
test-on-windows: | ||
runs-on: windows-latest | ||
permissions: | ||
contents: read | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,8 +72,6 @@ version: | |
excludes: | ||
# PK can't use itself as a Maven plugin | ||
- regex: "W-PK-CORE-151: Pom file .* contains no reference to project-keeper-maven-plugin." | ||
# Build with Java 21 fails due to missing JavaDoc comments, see https://github.com/exasol/project-keeper/issues/596 | ||
- "E-PK-CORE-17: Missing required file: '.github/workflows/ci-build-next-java.yml'" | ||
# No configuration necessary for aggregator POM | ||
- "E-PK-CORE-103: Missing parent declaration in 'pom.xml'" | ||
- "E-PK-CORE-17: Missing required file: 'pk_generated_parent.pom'" | ||
|
@@ -89,6 +87,7 @@ build: | |
- name: "ci-build.yml" | ||
stepCustomizations: | ||
- action: INSERT_AFTER | ||
job: build-and-test | ||
stepId: setup-java | ||
content: | ||
name: Set up Go | ||
|
@@ -98,12 +97,14 @@ build: | |
go-version: "1.22" | ||
cache-dependency-path: .project-keeper.yml | ||
- action: INSERT_AFTER | ||
job: build-and-test | ||
stepId: setup-go | ||
content: | ||
name: Install Go tools | ||
id: install-go-tools | ||
run: go install github.com/google/[email protected] | ||
- action: REPLACE | ||
job: build-and-test | ||
stepId: build-pk-verify | ||
content: | ||
name: Run tests and build with Maven | ||
|
@@ -115,12 +116,14 @@ build: | |
env: | ||
GITHUB_TOKEN: ${{ github.token }} # Required for integration tests | ||
- action: INSERT_AFTER | ||
job: build-and-test | ||
stepId: sonar-analysis | ||
content: | ||
name: Run project-keeper itself | ||
id: build-pk-verify | ||
run: mvn --batch-mode com.exasol:project-keeper-maven-plugin:verify --projects . | ||
- action: INSERT_AFTER | ||
job: build-and-test | ||
stepId: build-pk-verify | ||
content: | ||
name: Verify that metrics.json was created | ||
|
@@ -130,10 +133,21 @@ build: | |
ls -lh coverage-aggregator/target/metrics.json | ||
cat coverage-aggregator/target/metrics.json | ||
# Build with Java 21 fails due to missing JavaDoc comments, see https://github.com/exasol/project-keeper/issues/596 | ||
- action: REPLACE | ||
job: next-java-compatibility | ||
stepId: build-next-java | ||
content: | ||
name: Run tests and build with Maven 21 | ||
id: build-next-java | ||
# Only run tests as javadoc has warnings with Java 21 | ||
run: mvn --batch-mode clean test -DtrimStackTrace=false -Djava.version=21 | ||
|
||
# [itest->dsn~customize-build-process.dependency-check~0] | ||
- name: "dependencies_check.yml" | ||
stepCustomizations: | ||
- action: INSERT_AFTER | ||
job: report_security_issues | ||
stepId: setup-jdks | ||
content: | ||
name: Install Project Keeper | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ error-tags: | |
PK-CORE: | ||
packages: | ||
- com.exasol.projectkeeper | ||
highest-index: 207 | ||
highest-index: 208 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.