Test GH Workflow - Release versioning #13
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: "PR" | |
on: | |
- pull_request | |
jobs: | |
check-release-version: | |
name: Check release version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get all tags | |
run: git fetch --tags | |
- name: Check release version | |
run: | | |
release=$(curl -sSL "https://api.github.com/repos/${GITHUB_REPOSITORY}/releases/latest" | jq -r .tag_name) | |
release_subversion=$(echo "$release" | cut -d"." -f3,3) | |
release_stage_number=$(echo "$release" | cut -d"." -f4,4 | grep -o '[0-9]' ) | |
next_version=$(grep -E 'current-version:\s*' .github/project.yml | awk '{print $2}') | |
next_version_subversion=$(echo "$next_version" | cut -d"." -f3,3) | |
next_version_stage_number=$(echo "$next_version" | cut -d"." -f4,4 | grep -o '[0-9]' ) | |
if ! [[ $release =~ .*Final$ ]]; then | |
if [[ $next_version_subversion > $release_subversion ]]; then | |
echo "Error: you are bumping the FW sub version when the previous release was not Final" | |
exit 1; | |
fi | |
if [[ $next_version_stage_number != $(("$release_stage_number" + 1)) ]]; then | |
echo "Error: release stage numbers should go in sequence" | |
exit 1; | |
fi | |
else | |
if [[ $(("$release_subversion" + 1)) != $next_version_subversion || $next_version_stage_number != 1 ]]; then | |
echo "Error: release sub versions should go in sequence" | |
exit 1; | |
fi | |
fi | |
validate-format: | |
name: Validate format | |
runs-on: ubuntu-latest | |
needs: check-release-version | |
strategy: | |
matrix: | |
java: [ 17 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Reclaim Disk Space | |
run: .github/ci-prerequisites.sh | |
- name: Install required tools | |
run: sudo apt update && sudo apt install pigz | |
- name: Install JDK {{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
check-latest: true | |
cache: 'maven' | |
- name: Build with Maven | |
run: | | |
mvn -V -B -s .github/mvn-settings.xml clean install -Pframework,examples -Dvalidate-format -DskipTests -DskipITs | |
- name: Tar Maven Repo | |
shell: bash | |
run: tar -I 'pigz -9' -cf maven-repo-current-fw.tgz -C ~ .m2/repository | |
- name: Persist Maven Repo | |
uses: actions/upload-artifact@v4 | |
with: | |
name: maven-repo-current-fw${{matrix.java}} | |
path: maven-repo-current-fw.tgz | |
retention-days: 1 | |
quarkus-main-build: | |
name: Quarkus main build | |
runs-on: ubuntu-latest | |
needs: validate-format | |
strategy: | |
matrix: | |
java: [ 17 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Reclaim Disk Space | |
run: .github/ci-prerequisites.sh | |
- name: Install required tools | |
run: sudo apt update && sudo apt install pigz | |
- name: Install JDK {{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
check-latest: true | |
cache: 'maven' | |
- name: Build Quarkus main | |
run: | | |
git clone https://github.com/quarkusio/quarkus.git && cd quarkus && ./mvnw -B -s .github/mvn-settings.xml clean install -Dquickly -Dno-test-modules -Prelocations | |
- name: Tar Maven Repo | |
shell: bash | |
run: tar -I 'pigz -9' -cf maven-repo.tgz -C ~ .m2/repository | |
- name: Persist Maven Repo | |
uses: actions/upload-artifact@v4 | |
with: | |
name: maven-repo${{matrix.java}} | |
path: maven-repo.tgz | |
retention-days: 1 | |
linux-build-jvm-released: | |
name: Linux - JVM build - Released Versions | |
runs-on: ubuntu-latest | |
needs: validate-format | |
strategy: | |
matrix: | |
quarkus-version: ["current"] | |
java: [ 17 ] | |
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: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
check-latest: true | |
cache: 'maven' | |
- name: Install Helm client | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.9.0 | |
id: install | |
- name: Setup helmfile | |
uses: mamezou-tech/[email protected] | |
with: | |
helmfile-version: "v0.145.2" | |
install-helm: no | |
- name: Download Maven Repo | |
uses: actions/download-artifact@v4 | |
with: | |
name: maven-repo-current-fw${{matrix.java}} | |
path: . | |
- name: Extract Maven Repo | |
shell: bash | |
run: tar -xzf maven-repo-current-fw.tgz -C ~ | |
- name: Build in JVM mode | |
run: | | |
mvn -B -fae -s .github/mvn-settings.xml clean install -Pexamples | |
- name: Detect flaky tests | |
id: flaky-test-detector | |
shell: bash | |
if: ${{ hashFiles('**/flaky-run-report.json') != '' }} | |
run: echo "has-flaky-tests=true" >> "$GITHUB_OUTPUT" | |
- name: Zip Artifacts | |
run: | | |
zip -R artifacts-quarkus${{ matrix.quarkus-version }}-linux-jvm${{ matrix.java }}.zip '*-reports/*' | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-quarkus${{ matrix.quarkus-version }}-linux-jvm${{ matrix.java }} | |
path: artifacts-quarkus${{ matrix.quarkus-version }}-linux-jvm${{ matrix.java }}.zip | |
linux-build-jvm-latest: | |
name: Linux - JVM build - Latest Version | |
runs-on: ubuntu-latest | |
needs: quarkus-main-build | |
strategy: | |
matrix: | |
quarkus-version: ["999-SNAPSHOT"] | |
java: [ 17 ] | |
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: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
check-latest: true | |
cache: 'maven' | |
- name: Install Helm client | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.9.0 | |
id: install | |
- name: Setup helmfile | |
uses: mamezou-tech/[email protected] | |
with: | |
helmfile-version: "v0.145.2" | |
install-helm: no | |
- name: Download Maven Repo | |
uses: actions/download-artifact@v4 | |
with: | |
name: maven-repo${{matrix.java}} | |
path: . | |
- name: Extract Maven Repo | |
shell: bash | |
run: tar -xzf maven-repo.tgz -C ~ | |
- name: Build Quarkus CLI | |
run: | | |
git clone https://github.com/quarkusio/quarkus.git && cd quarkus/devtools/cli && mvn -B -s ../../../.github/mvn-settings.xml clean install -Dquickly -Dno-test-modules -Prelocations | |
- name: Install Quarkus CLI | |
run: | | |
cat <<EOF > ./quarkus-dev-cli | |
#!/bin/bash | |
java -jar $PWD/quarkus/devtools/cli/target/quarkus-cli-999-SNAPSHOT-runner.jar "\$@" | |
EOF | |
chmod +x ./quarkus-dev-cli | |
./quarkus-dev-cli version | |
- name: Build in JVM mode | |
run: | | |
mvn -B -fae -s .github/mvn-settings.xml clean install -Pframework,examples,extensions -Drun-cli-tests -Dts.quarkus.cli.cmd="${PWD}/quarkus-dev-cli" -Dquarkus.platform.version="${{ matrix.quarkus-version }}" | |
- name: Detect flaky tests | |
id: flaky-test-detector | |
shell: bash | |
if: ${{ hashFiles('**/flaky-run-report.json') != '' }} | |
run: echo "has-flaky-tests=true" >> "$GITHUB_OUTPUT" | |
- name: Zip Artifacts | |
run: | | |
zip -R artifacts-latest-linux-jvm${{ matrix.java }}.zip '*-reports/*' | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-latest-linux-jvm${{ matrix.java }} | |
path: artifacts-latest-linux-jvm${{ matrix.java }}.zip | |
linux-build-native-released: | |
name: Daily - Linux - Native build - Released Version | |
runs-on: ubuntu-latest | |
needs: validate-format | |
strategy: | |
matrix: | |
quarkus-version: [ "current" ] | |
java: [ 17 ] | |
examples: [ | |
'examples/pingpong,examples/restclient,examples/greetings,examples/blocking-reactive-model,examples/https,examples/grpc,examples/consul,examples/infinispan,examples/microprofile,examples/keycloak,examples/kafka,examples/kafka-registry,examples/kafka-streams', | |
'!examples/pingpong,!examples/restclient,!examples/greetings,!examples/blocking-reactive-model,!examples/https,!examples/grpc,!examples/consul,!examples/infinispan,!examples/microprofile,!examples/keycloak,!examples/kafka,!examples/kafka-registry,!examples/kafka-streams' | |
] | |
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: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
check-latest: true | |
cache: 'maven' | |
- name: Install Helm client | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.9.0 | |
id: install-helm | |
- name: Setup helmfile | |
uses: mamezou-tech/[email protected] | |
with: | |
helmfile-version: "v0.145.2" | |
install-helm: no | |
- name: Download Maven Repo | |
uses: actions/download-artifact@v4 | |
with: | |
name: maven-repo-current-fw${{matrix.java}} | |
path: . | |
- name: Extract Maven Repo | |
shell: bash | |
run: tar -xzf maven-repo-current-fw.tgz -C ~ | |
- name: Build | |
run: | | |
mvn -B -fae -s .github/mvn-settings.xml clean install -Pexamples,native -pl '${{ matrix.examples }}' | |
- name: Detect flaky tests | |
id: flaky-test-detector | |
shell: bash | |
if: ${{ hashFiles('**/flaky-run-report.json') != '' }} | |
run: echo "has-flaky-tests=true" >> "$GITHUB_OUTPUT" | |
- name: Zip Artifacts | |
if: failure() | |
run: | | |
zip -R artifacts-native-${{ matrix.quarkus-version }}-${{ matrix.java }}.zip '*-reports/*' | |
- name: Archive artifacts | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-native-${{ matrix.quarkus-version }}-${{ matrix.java }} | |
path: artifacts-native-${{ matrix.quarkus-version }}-${{ matrix.java }}.zip | |
windows-build-jvm-latest: | |
name: Windows - JVM build - Latest Version | |
runs-on: windows-latest | |
needs: quarkus-main-build | |
strategy: | |
matrix: | |
java: [ 17 ] | |
quarkus-version: ["999-SNAPSHOT"] | |
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: Install Helm client | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.9.0 | |
id: install | |
- uses: MinoruSekine/setup-scoop@main | |
with: | |
add_extras_bucket: 'true' | |
- name: Install helmfile | |
shell: bash | |
run: scoop install helmfile | |
- name: Download Maven Repo | |
uses: actions/download-artifact@v4 | |
with: | |
name: maven-repo${{matrix.java}} | |
path: . | |
- name: Extract Maven Repo | |
shell: bash | |
run: tar -xzf maven-repo.tgz -C ~ | |
- name: Build in JVM mode | |
shell: bash | |
run: | | |
mvn -B -fae -s .github/mvn-settings.xml clean install -Pframework,examples -Dquarkus.platform.version="${{ matrix.quarkus-version }}" | |
- name: Detect flaky tests | |
shell: bash | |
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-released, linux-build-jvm-latest, linux-build-native-released, windows-build-jvm-latest] | |
steps: | |
- name: Create file with information about job with flaky test | |
if: needs.linux-build-jvm-released.outputs.has-flaky-tests == 'true' || needs.linux-build-jvm-latest.outputs.has-flaky-tests == 'true' || needs.linux-build-native-released.outputs.has-flaky-tests == 'true' || needs.windows-build-jvm-latest.outputs.has-flaky-tests == 'true' | |
run: | | |
job_name="" | |
if $IS_LINUX_JVM_LATEST | |
then | |
job_name+=", 'Linux - JVM build - Latest Version'" | |
fi | |
if $IS_LINUX_JVM_RELEASED | |
then | |
job_name+=", 'Linux - JVM build - Released Versions'" | |
fi | |
if $IS_LINUX_NATIVE_RELEASED | |
then | |
job_name+=", 'Daily - Linux - Native build - Released Version'" | |
fi | |
if $IS_WINDOWS_JVM_LATEST | |
then | |
job_name+=", 'Windows - JVM build - Latest Version'" | |
fi | |
echo "${job_name:2}" > jobs-with-flaky-tests | |
env: | |
IS_LINUX_JVM_LATEST: ${{ needs.linux-build-jvm-latest.outputs.has-flaky-tests == 'true' }} | |
IS_LINUX_JVM_RELEASED: ${{ needs.linux-build-jvm-released.outputs.has-flaky-tests == 'true' }} | |
IS_LINUX_NATIVE_RELEASED: ${{ needs.linux-build-native-released.outputs.has-flaky-tests == 'true' }} | |
IS_WINDOWS_JVM_LATEST: ${{ 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 | |
- name: Save PR number | |
if: ${{ hashFiles('**/jobs-with-flaky-tests') != '' }} | |
env: | |
PR_NUMBER: ${{ github.event.number }} | |
run: echo $PR_NUMBER > pr-number | |
- name: Archive PR number | |
uses: actions/upload-artifact@v4 | |
if: ${{ hashFiles('**/jobs-with-flaky-tests') != '' }} | |
with: | |
name: pr-number | |
path: pr-number |