Daily Build #527
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: "Daily Build" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 23 * * *' | |
jobs: | |
linux-build-jvm-latest: | |
name: Daily - Linux - JVM build - Latest Version | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
quarkus-version: ["999-SNAPSHOT"] | |
java: [ 17, 21 ] | |
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' | |
id: install-jdk | |
- uses: ./.github/actions/prepare-quarkus-cli | |
- name: Build | |
run: | | |
mvn -B --no-transfer-progress -fae clean install -Pframework,examples,coverage -Dvalidate-format -Drun-cli-tests -Dts.quarkus.cli.cmd="${PWD}/quarkus-dev-cli" -Dquarkus.platform.version="${{ matrix.quarkus-version }}" | |
- name: Zip Artifacts | |
if: failure() | |
run: | | |
zip -R artifacts-latest-linux-jvm${{ matrix.java }}.zip '*-reports/*' | |
- name: Archive artifacts | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-latest-linux-jvm${{ matrix.java }} | |
path: artifacts-latest-linux-jvm${{ matrix.java }}.zip | |
linux-build-native: | |
name: Daily - Linux - Native build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
quarkus-version: ["current", "999-SNAPSHOT"] | |
java: [ 17 ] | |
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: Build | |
run: | | |
if [[ "${{ matrix.quarkus-version }}" != current ]]; then | |
QUARKUS_VERSION="-Dquarkus.platform.version=${{ matrix.quarkus-version }}" | |
fi | |
mvn -B --no-transfer-progress -fae -s .github/quarkus-snapshots-mvn-settings.xml clean install -Pframework,examples,native $QUARKUS_VERSION | |
- 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 | |
kubernetes-build-jvm-latest: | |
name: Daily - Kubernetes - JVM - Latest version | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
quarkus-version: ["999-SNAPSHOT"] | |
java: [ 17 ] | |
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: Set up Minikube-Kubernetes | |
uses: manusa/[email protected] | |
with: | |
minikube version: 'v1.33.1' | |
kubernetes version: 'v1.30.0' | |
github token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Login to Docker Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: quay.io | |
username: ${{ secrets.CI_REGISTRY_USERNAME }} | |
password: ${{ secrets.CI_REGISTRY_PASSWORD }} | |
- name: Build | |
run: | | |
mvn -B --no-transfer-progress -fae -s .github/quarkus-snapshots-mvn-settings.xml clean install -Pframework,examples,kubernetes -Dquarkus.platform.version="${{ matrix.quarkus-version }}" -Dts.container.registry-url=${{ secrets.CI_REGISTRY }} | |
- name: Zip Artifacts | |
if: failure() | |
run: | | |
zip -R artifacts-k8s-jvm-${{ matrix.quarkus-version }}-${{ matrix.java }}.zip '*-reports/*' | |
- name: Archive artifacts | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-k8s-jvm-${{ matrix.quarkus-version }}-${{ matrix.java }} | |
path: artifacts-k8s-jvm-${{ matrix.quarkus-version }}-${{ matrix.java }}.zip | |
kubernetes-build-native-latest: | |
name: Daily - Kubernetes - Native build - Latest version | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
quarkus-version: ["999-SNAPSHOT"] | |
java: [ 21 ] | |
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: Set up Minikube-Kubernetes | |
uses: manusa/[email protected] | |
with: | |
minikube version: 'v1.33.1' | |
kubernetes version: 'v1.30.0' | |
github token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Login to Docker Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: quay.io | |
username: ${{ secrets.CI_REGISTRY_USERNAME }} | |
password: ${{ secrets.CI_REGISTRY_PASSWORD }} | |
- name: Build | |
run: | | |
mvn -B --no-transfer-progress -fae -s .github/quarkus-snapshots-mvn-settings.xml clean install -Pframework,examples,native,kubernetes -Dquarkus.platform.version="${{ matrix.quarkus-version }}" -Dts.container.registry-url=${{ secrets.CI_REGISTRY }} | |
- name: Zip Artifacts | |
if: failure() | |
run: | | |
zip -R artifacts-k8s-native-${{ matrix.quarkus-version }}-${{ matrix.java }}.zip '*-reports/*' | |
- name: Archive artifacts | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-k8s-native-${{ matrix.quarkus-version }}-${{ matrix.java }} | |
path: artifacts-k8s-native-${{ matrix.quarkus-version }}-${{ matrix.java }}.zip | |
windows-build-jvm-latest: | |
name: Daily - Windows - JVM build - Latest Version | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
java: [ 17, 21 ] | |
quarkus-version: ["999-SNAPSHOT"] | |
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: | | |
mvn -B --no-transfer-progress -fae -s .github/quarkus-snapshots-mvn-settings.xml clean install -Pframework,examples -Dquarkus.platform.version="${{ matrix.quarkus-version }}" | |
- 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 | |
windows-build-native-latest: | |
name: Daily - Windows - Native build - Latest Version | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
java: [ 17 ] | |
quarkus-version: ["999-SNAPSHOT"] | |
graalvm-version: ["mandrel-latest"] | |
graalvm-java: ["21"] | |
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: Download Sysinternals Handle program used for native race debugging | |
shell: pwsh | |
run: Invoke-WebRequest https://download.sysinternals.com/files/Handle.zip -OutFile .\handle.zip | |
- name: Unzip Sysinternals Handle | |
shell: pwsh | |
run: Expand-Archive .\handle.zip -DestinationPath . | |
- name: Install cl.exe | |
uses: ilammy/msvc-dev-cmd@v1 | |
- uses: microsoft/setup-msbuild@v2 | |
- name: Setup GraalVM | |
id: setup-graalvm | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
version: ${{ matrix.graalvm-version }} | |
java-version: ${{ matrix.graalvm-java }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Configure Pagefile | |
# Increased the page-file size due to memory-consumption of native-image command | |
# For details see https://github.com/actions/virtual-environments/issues/785 | |
uses: al-cheb/[email protected] | |
- name: Build in Native mode | |
shell: bash | |
run: | | |
mvn -B --no-transfer-progress -fae -s .github/quarkus-snapshots-mvn-settings.xml clean install -Pframework,examples,native -Dquarkus.native.container-build=false -Dquarkus.platform.version="${{ matrix.quarkus-version }}" | |
- 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-native${{ matrix.java }}.tar -T - | |
- name: Archive artifacts | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-latest-windows-native${{ matrix.java }} | |
path: artifacts-latest-windows-native${{ matrix.java }}.tar |