Nightly - Check #668
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
# | |
# 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 - Check | |
on: | |
schedule: | |
- cron: '0 20 */1 * *' # once a day. 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 | |
check-spotbugs: | |
if: github.repository == 'apache/shardingsphere' | |
name: Check - SpotBugs | |
needs: global-environment | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party- | |
- name: Run SpotBugs | |
run: ./mvnw clean install spotbugs:check -Pcheck -T1C | |
check-and-report-sonarcloud: | |
if: github.repository == 'apache/shardingsphere' | |
name: Check - SonarCloud | |
needs: global-environment | |
runs-on: ubuntu-latest | |
timeout-minutes: 25 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party- | |
- 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 | |
checkstyle-report-sonarcloud: | |
if: github.repository == 'apache/shardingsphere' | |
name: Checkstyle - SonarCloud | |
needs: global-environment | |
runs-on: ubuntu-latest | |
timeout-minutes: 100 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party- | |
- name: Aggregate checkstyle report | |
run: | | |
export MAVEN_OPTS='-Xmx6g -Xms512m' | |
./mvnw clean verify checkstyle:checkstyle-aggregate | |
- name: Upload checkstyle report to SonarCloud | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }} | |
run: ./mvnw -B sonar:sonar -Dsonar.projectKey=apache_shardingsphere -Dsonar.java.checkstyle.reportPaths=target/checkstyle-result.xml | |
check-dead-links: | |
if: github.repository == 'apache/shardingsphere' | |
name: Check - Dead Links | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo npm install -g markdown-link-check@3.10.0 | |
- name: Check dead link | |
run: | | |
IGNORED_PATH_LIST=("./docs/document/themes" "./docs/community/content/powered-by" "./docs/blog/content/material" "./docs/blog/themes" "./docs/community/themes") | |
ignore_current_file=false | |
for file in $(find . -name "*.md"); do | |
for ignored_path in ${IGNORED_PATH_LIST[@]} | |
do | |
if [[ $file =~ $ignored_path ]]; then | |
ignore_current_file=true | |
break | |
fi | |
done | |
if [[ $ignore_current_file == true ]]; then | |
ignore_current_file=false | |
continue | |
fi | |
echo "Checking $file" | |
markdown-link-check -c .github/workflows/resources/linkcheck/markdown-link-check.json -q "$file" | |
done | |
check-codeql: | |
if: github.repository == 'apache/shardingsphere' | |
name: Check - CodeQL | |
needs: global-environment | |
runs-on: ubuntu-latest | |
timeout-minutes: 100 | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: java | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party- | |
- name: Install Project | |
run: | | |
./mvnw clean install -DskipTests -B -ntp -T1C | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:java" | |
check-stale: | |
if: github.repository == 'apache/shardingsphere' | |
name: Check - Stale Issues | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-issue-stale: 14 | |
days-before-pr-stale: -1 | |
days-before-close: -1 | |
stale-issue-label: "stale" | |
any-of-issue-labels: "status: need more info,type: question" | |
operations-per-run: 100 | |
remove-stale-when-updated: true | |
stale-issue-message: > | |
There hasn't been any activity on this issue recently, and in order to prioritize active issues, it will be | |
marked as stale. | |
check-dependency-convergence: | |
if: github.repository == 'apache/shardingsphere' | |
name: Check - Dependency Convergence | |
needs: global-environment | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party- | |
- name: Run Dependency Convergence Check | |
run: | | |
sed -i '/<requireMavenVersion>/i \ <dependencyConvergence/>' pom.xml | |
./mvnw clean install -DskipTests -T1C -Dmaven.enforcer.fail=true | |
check-and-report-jacoco: | |
if: github.repository == 'apache/shardingsphere' | |
name: Check - Jacoco | |
needs: global-environment | |
runs-on: ubuntu-latest | |
timeout-minutes: 80 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: shardingsphere-maven-third-party-e2e-cache-${{ github.sha }} | |
restore-keys: | | |
shardingsphere-maven-third-party-e2e-cache- | |
shardingsphere-maven-third-party- | |
- name: Install Project | |
run: ./mvnw clean install -DskipTests -T1C | |
- name: Set up JDK 8 for Jacoco | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 8 | |
- name: Build with maven and execute jacoco aggregation script | |
run: | | |
./mvnw --show-version --batch-mode --no-transfer-progress verify -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@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ${{ github.workspace }}/target/mergeReport/jacoco.xml | |
- name: Set up JDK 17 for sonar plugin | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Upload jacoco report to sonar | |
env: | |
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }} | |
run: ./mvnw -B sonar:sonar -Dsonar.projectKey=apache_shardingsphere -Dsonar.coverage.jacoco.xmlReportPaths=${{ github.workspace }}/target/mergeReport/jacoco.xml |