Nightly - CI #1032
This file contains hidden or 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
# | |
# Licensed to the Apache Software Foundation (ASF) under one or more | |
# contributor license agreements. See the NOTICE file distributed with | |
# this work for additional information regarding copyright ownership. | |
# The ASF licenses this file to You under the Apache License, Version 2.0 | |
# (the "License"); you may not use this file except in compliance with | |
# the License. You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# | |
name: Nightly - CI | |
on: | |
schedule: | |
- cron: '0 13 * * 1-5' # Once a day between Monday and Friday. UTC time | |
workflow_dispatch: | |
env: | |
MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3 | |
jobs: | |
global-environment: | |
name: Import Global Environment | |
uses: ./.github/workflows/required-reusable.yml | |
ci: | |
if: ${{ needs.global-environment.outputs.GLOBAL_JOB_ENABLED == 'true' }} | |
name: CI - JDK ${{ matrix.java-version }} on ${{ matrix.os }} | |
needs: global-environment | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 90 | |
strategy: | |
max-parallel: 20 | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
java-version: [ 11, 17, 21, '25-ea' ] | |
steps: | |
- name: Support Long Paths in Windows | |
if: matrix.os == 'windows-latest' | |
run: git config --global core.longpaths true | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java-version }} | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party-cache-${{ github.sha }} | |
restore-keys: | | |
${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party-cache- | |
${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party- | |
- name: Build Project with Maven | |
run: ./mvnw clean install -B -ntp -T1C | |
- name: Build Examples with Maven | |
run: ./mvnw clean package -B -f examples/pom.xml -T1C | |
ci-jdk8: | |
if: ${{ needs.global-environment.outputs.GLOBAL_JOB_ENABLED == 'true' }} | |
name: CI - JDK 8 on ${{ matrix.os }} | |
needs: global-environment | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 150 | |
strategy: | |
max-parallel: 20 | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
steps: | |
- name: Support Long Paths in Windows | |
if: matrix.os == 'windows-latest' | |
run: git config --global core.longpaths true | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party-cache-${{ github.sha }} | |
restore-keys: | | |
${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party-cache- | |
${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party- | |
- name: Build prod with Maven | |
run: ./mvnw clean install -DskipTests -B -ntp -T1C | |
- name: Setup JDK 8 for Test | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 8 | |
- name: Run Tests with JDK 8 | |
run: ./mvnw test -B -ntp -fae -T1C | |
ci-native-test: | |
if: ${{ needs.global-environment.outputs.GLOBAL_JOB_ENABLED == 'true' }} | |
name: NativeTest CI - GraalVM CE on ${{ matrix.os }} | |
needs: global-environment | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 90 | |
strategy: | |
max-parallel: 20 | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-2025 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rancher Desktop without GUI on Windows Server | |
if: matrix.os == 'windows-2025' | |
run: | | |
iwr -Uri "https://raw.githubusercontent.com/microsoft/Windows-Containers/refs/heads/Main/helpful_tools/Install-DockerCE/uninstall-docker-ce.ps1" -OutFile uninstall-docker-ce.ps1 | |
.\uninstall-docker-ce.ps1 -Force | |
ri .\uninstall-docker-ce.ps1 | |
winget install --id jazzdelightsme.WingetPathUpdater --source winget | |
winget install --id SUSE.RancherDesktop --source winget --skip-dependencies | |
rdctl start --application.start-in-background --container-engine.name=moby --kubernetes.enabled=false | |
./test/native/src/test/resources/test-native/ps1/wait-for-rancher-desktop-backend.ps1 | |
"PATH=$env:PATH" >> $env:GITHUB_ENV | |
- uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: '24.0.2' | |
distribution: 'graalvm-community' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
native-image-job-reports: 'true' | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party-cache-${{ github.sha }} | |
restore-keys: | | |
${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party-cache- | |
${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party- | |
# TODO Remove this workaround after. The graalvm native image built with windows server is missing some GRMs for testcontainers | |
- name: Run test with GraalVM CE | |
if: matrix.os == 'windows-2025' | |
run: ./mvnw -PgenerateMetadata -e -T 1C clean verify | |
- name: Run nativeTest with GraalVM CE | |
if: matrix.os == 'ubuntu-latest' | |
run: ./mvnw -PnativeTestInShardingSphere -e "-DjvmArgs=-XX:MaxRAMPercentage=85.0" clean verify |