Skip to content

Schedule - Report #21670

Schedule - Report

Schedule - Report #21670

#
# 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: Schedule - Report
on:
schedule:
- cron: '0 17 * * *' # Once a day. UTC time 17:00
workflow_dispatch:
concurrency:
group: schedule-report-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
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
check-and-report-jacoco:
if: github.repository == 'apache/shardingsphere'
name: Schedule - Jacoco report
needs: global-environment
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v6.0.1
- uses: ./.github/workflows/resources/actions/setup-build-environment
with:
cache-prefix: ${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}
- name: Install Project
run: ./mvnw clean install -DskipTests -T1C
- name: Build with maven and execute jacoco aggregation script
run: |
./mvnw -V -B -ntp verify -Djacoco.skip=false -Dmaven.test.failure.ignore=true -DfailIfNoTests=false -Dsurefire.failIfNoSpecifiedTests=false &&
chmod +x ./.github/workflows/resources/scripts/unit-test-coverage-merge/code-coverage-merge.sh &&
./.github/workflows/resources/scripts/unit-test-coverage-merge/code-coverage-merge.sh ${{ github.workspace }}
- name: Upload coverage reports to codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ${{ github.workspace }}/target/mergeReport/jacoco.xml
- uses: actions/upload-artifact@v6
with:
name: jacoco-report
path: ${{ github.workspace }}/target/mergeReport/jacoco
check-and-report-sonarcloud:
if: github.repository == 'apache/shardingsphere'
name: Schedule - SonarCloud report
needs:
- global-environment
- check-and-report-jacoco
runs-on: ubuntu-latest
timeout-minutes: 40
steps:
- uses: actions/checkout@v6.0.1
- uses: ./.github/workflows/resources/actions/setup-build-environment
with:
cache-prefix: ${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}
- uses: actions/cache@v5.0.1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Analyze with SonarCloud
env:
MAVEN_OPTS: "-XX:+UseG1GC -XX:InitialHeapSize=2g -XX:MaxHeapSize=6g -XX:+UseStringDeduplication"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
run: ./mvnw -B clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=apache_shardingsphere -DskipTests