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

ci:fix: kube-api-test child modules released with Java 11 #5902

Merged
merged 1 commit into from
Apr 16, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/release-snapshots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,13 @@ jobs:
gpg-private-key: ${{ secrets.SIGNINGKEY }}
gpg-passphrase: SIGNINGPASSWORD
- name: Build and release Java 11 modules
run: ./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} -pl "httpclient-jdk" -pl "httpclient-jetty" -pl "junit/kube-api-test" clean deploy
run: ./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} \
-pl "httpclient-jdk" \
-pl "httpclient-jetty" \
-pl "junit/kube-api-test" \
-pl "junit/kube-api-test/core" \
-pl "junit/kube-api-test/client-inject" \
clean deploy
- name: Build and release BOM
run: |
./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} clean sundr:generate-bom &&
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,13 @@ jobs:
gpg-private-key: ${{ secrets.SIGNINGKEY }}
gpg-passphrase: SIGNINGPASSWORD
- name: Build and release Java 11 modules
run: ./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} -pl "httpclient-jdk" -pl "httpclient-jetty" -pl "junit/kube-api-test" clean deploy
run: ./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} \
-pl "httpclient-jdk" \
-pl "httpclient-jetty" \
-pl "junit/kube-api-test" \
-pl "junit/kube-api-test/core" \
-pl "junit/kube-api-test/client-inject" \
clean deploy
- name: Build and release BOM
run: |
./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} clean sundr:generate-bom &&
Expand Down
Loading