-
Notifications
You must be signed in to change notification settings - Fork 732
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21366 from indeewari/jdk_21_builder
Adding integration test runner for JDK 21 runtime
- Loading branch information
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: product-is-builder-jdk21 | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# At 00:00 on day-of-month 1 | ||
- cron: '0 0 1 * *' | ||
|
||
|
||
env: | ||
MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3 | ||
|
||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
JAVA_TOOL_OPTIONS: "-Djdk.util.zip.disableZip64ExtraFieldValidation=true -Djdk.nio.zipfs.allowDotZipEntry=true" | ||
|
||
steps: | ||
- name: Checkout repository code | ||
uses: actions/checkout@v2 | ||
- name: Set up Adopt JDK 11 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: "11" | ||
distribution: "adopt" | ||
- name: Product-IS build with JDK 11 without Integration Tests | ||
run: | | ||
mvn clean install --batch-mode -Dmaven.test.skip=true | tee mvn-build.log | ||
- name: Set up Adopt JDK 21 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: "21" | ||
distribution: "adopt" | ||
- name: Product-IS build with JDK 21 with Integration Tests | ||
run: | | ||
ls | ||
cd modules/integration/ | ||
mvn clean install --batch-mode | tee mvn-build.log | ||
PR_BUILD_STATUS=$(cat mvn-build.log | grep "\[INFO\] BUILD" | grep -oE '[^ ]+$') | ||
PR_TEST_RESULT=$(sed -n -e '/\[INFO\] Results:/,/\[INFO\] Tests run:/ p' mvn-build.log) | ||
PR_BUILD_FINAL_RESULT=$( | ||
echo "===========================================================" | ||
echo "product-is BUILD $PR_BUILD_STATUS" | ||
echo "==========================================================" | ||
echo "" | ||
echo "$PR_TEST_RESULT" | ||
) | ||
PR_BUILD_RESULT_LOG_TEMP=$(echo "$PR_BUILD_FINAL_RESULT" | sed 's/$/%0A/') | ||
PR_BUILD_RESULT_LOG=$(echo $PR_BUILD_RESULT_LOG_TEMP) | ||
echo "::warning::$PR_BUILD_RESULT_LOG" | ||
PR_BUILD_SUCCESS_COUNT=$(grep -o -i "\[INFO\] BUILD SUCCESS" mvn-build.log | wc -l) | ||
if [ "$PR_BUILD_SUCCESS_COUNT" != "3" ]; then | ||
echo "PR BUILD not successfull. Aborting." | ||
echo "::error::PR BUILD not successfull. Check artifacts for logs." | ||
exit 1 | ||
fi |