[3.8] Re-enable tests on IBM platforms due to removal of zookeeper #4642
Workflow file for this run
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
name: "Pull Request CI" | |
on: | |
- pull_request | |
jobs: | |
linux-validate-format: | |
name: Linux - Validate format | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 17 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install JDK {{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
check-latest: true | |
- name: Build with Maven | |
run: | | |
mvn -V -B --no-transfer-progress -s .github/mvn-settings.xml verify -Dall-modules -Dvalidate-format -DskipTests -DskipITs -Dquarkus.container-image.build=false -Dquarkus.container-image.push=false | |
detect-test-suite-modules: | |
name: Detect Modules in PR | |
runs-on: ubuntu-latest | |
needs: [ linux-validate-format ] | |
steps: | |
- uses: actions/checkout@v4 | |
- id: files | |
uses: tj-actions/changed-files@v42 | |
continue-on-error: true | |
- id: detect-changes | |
run: | | |
# FIXME: remove helm filter from following line when helm module is enabled | |
MODULES=$(find -name pom.xml | sed -e 's|pom.xml| |' | sed -e 's|./| |' | grep -v " quarkus/" | grep -v " helm/helm-minimum" | grep -v resources) | |
CHANGED="" | |
MODULES_ARG="" | |
# If changed file have some special character, its path is surrounded with quotes which causing the if statement fail | |
CHANGED_FILE=$(echo ${{ steps.files.outputs.all_changed_and_modified_files }} | sed 's/\"/\\"/') | |
for module in $MODULES | |
do | |
if [[ $CHANGED_FILE =~ ("$module") ]] ; then | |
CHANGED=$(echo $CHANGED" "$module) | |
fi | |
done | |
# trim leading spaces so that module args don't start with comma | |
CHANGED="$(echo $CHANGED | xargs)" | |
MODULES_ARG="${CHANGED// /,}" | |
echo "MODULES_ARG=$MODULES_ARG" >> $GITHUB_OUTPUT | |
outputs: | |
MODULES_ARG: ${{ steps.detect-changes.outputs.MODULES_ARG }} | |
prepare-jvm-native-latest-modules-mvn-param: | |
name: Prepare Maven Params For Linux JVM and native Build | |
runs-on: ubuntu-latest | |
needs: [ detect-test-suite-modules ] | |
env: | |
MODULES_ARG: ${{ needs.detect-test-suite-modules.outputs.MODULES_ARG }} | |
steps: | |
- id: prepare-modules-mvn-param | |
run: | | |
if [[ -n ${MODULES_ARG} ]]; then | |
echo "Running modules: ${MODULES_ARG}" | |
echo "JVM_MODULES_MAVEN_PARAM=[\" -pl ${MODULES_ARG} -Dall-modules\"]" >> $GITHUB_OUTPUT | |
echo "NATIVE_MODULES_MAVEN_PARAM=[\" -pl ${MODULES_ARG} -Dall-modules\"]" >> $GITHUB_OUTPUT | |
else | |
echo "JVM_MODULES_MAVEN_PARAM=[' -P root-modules,cache-modules,spring-modules,http-modules,test-tooling-modules,messaging-modules,monitoring-modules', ' -P security-modules,sql-db-modules,websockets-modules']" >> $GITHUB_OUTPUT | |
echo "NATIVE_MODULES_MAVEN_PARAM=[' -P root-modules,websockets-modules,test-tooling-modules,nosql-db-modules', ' -P http-modules,cache-modules', ' -P security-modules,spring-modules', | |
' -P sql-db-modules -pl env-info,sql-db/hibernate,sql-db/sql-app,sql-db/sql-app-compatibility,sql-db/multiple-pus,sql-db/panache-flyway,sql-db/hibernate-reactive', | |
' -P sql-db-modules -pl env-info,sql-db/reactive-rest-data-panache,sql-db/vertx-sql,sql-db/reactive-vanilla,sql-db/hibernate-fulltext-search,sql-db/narayana-transactions', | |
' -P messaging-modules,monitoring-modules']" | tr -d -s '\n' ' ' >> $GITHUB_OUTPUT | |
fi | |
outputs: | |
JVM_MODULES_MAVEN_PARAM: ${{ steps.prepare-modules-mvn-param.outputs.JVM_MODULES_MAVEN_PARAM }} | |
NATIVE_MODULES_MAVEN_PARAM: ${{ steps.prepare-modules-mvn-param.outputs.NATIVE_MODULES_MAVEN_PARAM }} | |
linux-build-jvm-latest: | |
name: PR - Linux - JVM build - 3.8 | |
runs-on: ubuntu-latest | |
timeout-minutes: 240 | |
needs: prepare-jvm-native-latest-modules-mvn-param | |
strategy: | |
matrix: | |
java: [ 17 ] | |
cli: [ 3.8.6 ] | |
module-mvn-args: ${{ fromJSON(needs.prepare-jvm-native-latest-modules-mvn-param.outputs.JVM_MODULES_MAVEN_PARAM) }} | |
outputs: | |
has-flaky-tests: ${{steps.flaky-test-detector.outputs.has-flaky-tests}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Reclaim Disk Space | |
run: .github/ci-prerequisites.sh | |
- name: Install JDK {{ matrix.java }} | |
# Uses sha for added security since tags can be updated | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
check-latest: true | |
cache: 'maven' | |
- name: Install Quarkus CLI | |
run: | | |
wget -O quarkus-cli.zip -q --no-check-certificate --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 -t 10 https://github.com/quarkusio/quarkus/releases/download/${{ matrix.cli }}/quarkus-cli-${{ matrix.cli }}.zip | |
unzip -qo quarkus-cli.zip | |
chmod +x ./quarkus-cli-${{ matrix.cli }}/bin/quarkus | |
./quarkus-cli-${{ matrix.cli }}/bin/quarkus version | |
- name: Build with Maven | |
run: | | |
mvn -fae -V -B --no-transfer-progress -s .github/mvn-settings.xml clean verify -Dinclude.quarkus-cli-tests -Dts.quarkus.cli.cmd="${PWD}/quarkus-cli-${{ matrix.cli }}/bin/quarkus"${{ matrix.module-mvn-args }} -am -DexcludedGroups=long-running | |
- name: Detect flaky tests | |
id: flaky-test-detector | |
if: ${{ hashFiles('**/flaky-run-report.json') != '' }} | |
run: echo "has-flaky-tests=true" >> "$GITHUB_OUTPUT" | |
- name: Zip Artifacts | |
if: failure() | |
run: | | |
zip -R artifacts-latest-linux-jvm${{ matrix.java }}.zip '*-reports/*' | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: artifacts-latest-linux-jvm${{ matrix.java }} | |
path: artifacts-latest-linux-jvm${{ matrix.java }}.zip | |
linux-build-native-latest: | |
name: PR - Linux - Native build - 3.8 | |
runs-on: ubuntu-latest | |
needs: prepare-jvm-native-latest-modules-mvn-param | |
strategy: | |
matrix: | |
java: [ 17 ] | |
cli: [ 3.8.6 ] | |
module-mvn-args: ${{ fromJSON(needs.prepare-jvm-native-latest-modules-mvn-param.outputs.NATIVE_MODULES_MAVEN_PARAM) }} | |
outputs: | |
has-flaky-tests: ${{steps.flaky-test-detector.outputs.has-flaky-tests}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Reclaim Disk Space | |
run: .github/ci-prerequisites.sh | |
- name: Install JDK {{ matrix.java }} | |
# Uses sha for added security since tags can be updated | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
check-latest: true | |
cache: 'maven' | |
- name: Install Quarkus CLI | |
run: | | |
wget -O quarkus-cli.zip -q --no-check-certificate --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 -t 10 https://github.com/quarkusio/quarkus/releases/download/${{ matrix.cli }}/quarkus-cli-${{ matrix.cli }}.zip | |
unzip -qo quarkus-cli.zip | |
chmod +x ./quarkus-cli-${{ matrix.cli }}/bin/quarkus | |
./quarkus-cli-${{ matrix.cli }}/bin/quarkus version | |
- name: Build with Maven | |
run: | | |
mvn -fae -V -B --no-transfer-progress -s .github/mvn-settings.xml -fae \ | |
-Dquarkus.native.native-image-xmx=5g \ | |
-Dinclude.quarkus-cli-tests -Dts.quarkus.cli.cmd="${PWD}/quarkus-cli-${{ matrix.cli }}/bin/quarkus" \ | |
${{ matrix.module-mvn-args }} clean verify -Dnative -am -DexcludedGroups=long-running | |
- name: Detect flaky tests | |
id: flaky-test-detector | |
if: ${{ hashFiles('**/flaky-run-report.json') != '' }} | |
run: echo "has-flaky-tests=true" >> "$GITHUB_OUTPUT" | |
- name: Zip Artifacts | |
if: failure() | |
run: | | |
zip -R artifacts-latest-linux-native${{ matrix.java }}.zip '*-reports/*' | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: artifacts-latest-linux-native${{ matrix.java }} | |
path: artifacts-latest-linux-native${{ matrix.java }}.zip | |
windows-build-jvm-latest: | |
name: PR - Windows - JVM build - 3.8 | |
runs-on: windows-latest | |
needs: detect-test-suite-modules | |
env: | |
MODULES_ARG: ${{ needs.detect-test-suite-modules.outputs.MODULES_ARG }} | |
strategy: | |
matrix: | |
java: [ 17 ] | |
outputs: | |
has-flaky-tests: ${{steps.flaky-test-detector.outputs.has-flaky-tests}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install JDK {{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
check-latest: true | |
cache: 'maven' | |
- name: Build in JVM mode | |
shell: bash | |
run: | | |
MODULES_MAVEN_PARAM="" | |
if [[ -n ${MODULES_ARG} ]]; then | |
echo "Running modules: ${MODULES_ARG}" | |
MODULES_MAVEN_PARAM="-pl ${MODULES_ARG}" | |
fi | |
mvn -B --no-transfer-progress -fae -s .github/mvn-settings.xml clean verify -Dall-modules $MODULES_MAVEN_PARAM -am -DexcludedGroups=long-running | |
- name: Detect flaky tests | |
id: flaky-test-detector | |
if: ${{ hashFiles('**/flaky-run-report.json') != '' }} | |
run: echo "has-flaky-tests=true" >> "$GITHUB_OUTPUT" | |
- name: Zip Artifacts | |
shell: bash | |
if: failure() | |
run: | | |
# Disambiguate windows find from cygwin find | |
/usr/bin/find . -name '*-reports/*' -type d | tar -czf artifacts-latest-windows-jvm${{ matrix.java }}.tar -T - | |
- name: Archive artifacts | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-latest-windows-jvm${{ matrix.java }} | |
path: artifacts-latest-windows-jvm${{ matrix.java }}.tar | |
detect-flaky-tests: | |
name: Detect flaky tests | |
runs-on: ubuntu-latest | |
needs: [linux-build-jvm-latest, linux-build-native-latest, windows-build-jvm-latest] | |
steps: | |
- name: Create file with information about job with flaky test | |
if: needs.linux-build-jvm-latest.outputs.has-flaky-tests == 'true' || needs.linux-build-native-latest.outputs.has-flaky-tests == 'true' || needs.windows-build-jvm-latest.outputs.has-flaky-tests == 'true' | |
run: | | |
job_name="" | |
if $IS_LINUX_JVM | |
then | |
job_name+=", 'PR - Linux - JVM build - Latest Version'" | |
fi | |
if $IS_LINUX_NATIVE | |
then | |
job_name+=", 'PR - Linux - Native build - Latest Version'" | |
fi | |
if $IS_WINDOWS_JVM | |
then | |
job_name+=", 'PR - Windows - JVM build - Latest Version'" | |
fi | |
echo "${job_name:2}" > jobs-with-flaky-tests | |
env: | |
IS_LINUX_JVM: ${{ needs.linux-build-jvm-latest.outputs.has-flaky-tests == 'true' }} | |
IS_LINUX_NATIVE: ${{ needs.linux-build-native-latest.outputs.has-flaky-tests == 'true' }} | |
IS_WINDOWS_JVM: ${{ needs.windows-build-jvm-latest.outputs.has-flaky-tests == 'true' }} | |
- name: Archive 'jobs-with-flaky-tests' artifact | |
if: ${{ hashFiles('**/jobs-with-flaky-tests') != '' }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jobs-with-flaky-tests | |
path: jobs-with-flaky-tests |