Nightly - Check #205
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: ${{ needs.global-environment.outputs.GLOBAL_JOB_ENABLED == 'true' }} | |
name: Check - SpotBugs | |
needs: global-environment | |
runs-on: ${{ needs.global-environment.outputs.GLOBAL_RUNS_ON }} | |
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 | |
checkstyle-report-sonarcloud: | |
if: github.repository == 'apache/shardingsphere' | |
name: Checkstyle - SonarCloud | |
needs: global-environment | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
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: | | |
./mvnw clean install -DskipTests -T1C | |
./mvnw checkstyle:checkstyle-aggregate -Pcheck -T1C | |
- 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: 7 | |
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: ${{ needs.global-environment.outputs.GLOBAL_JOB_ENABLED == 'true' }} | |
name: Check - Dependency Convergence | |
needs: global-environment | |
runs-on: ${{ needs.global-environment.outputs.GLOBAL_RUNS_ON }} | |
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 |