13 Star 23 Fork 0

Gitee 极速下载/checkstyle

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/checkstyle/checkstyle
克隆/下载
appveyor.yml 1.72 KB
一键复制 编辑 原始数据 按行查看 历史
image: Visual Studio 2019
version: '{build}'
skip_tags: true
clone_depth: 10
branches:
only:
- master
except:
- gh-pages
install:
- cmd: git config core.autocrlf
- cmd: .\mvnw.cmd --version
- cmd: java -version
cache:
- C:\Users\appveyor\.m2
- .mvn\wrapper
matrix:
fast_finish: true
environment:
global:
CMD: " "
# https://stackoverflow.com/questions/42024619/maven-build-gets-connection-reset-when-downloading-artifacts
MAVEN_OPTS: "-Dhttp.keepAlive=false -Dmaven.wagon.http.retryHandler.count=3"
matrix:
# sevntu (JDK21)
- JAVA_HOME: C:\Program Files\Java\JDK21
DESC: "sevntu (JDK21)"
CMD: "./.ci/validation.cmd sevntu"
# run checkstyle (JDK21)
- JAVA_HOME: C:\Program Files\Java\JDK21
DESC: "run checkstyle (JDK21)"
CMD: "./.ci/validation.cmd run_checkstyle"
# verify without checkstyle (JDK21)
- JAVA_HOME: C:\Program Files\Java\JDK21
DESC: "verify without checkstyle (JDK21)"
CMD: "./.ci/validation.cmd verify_without_checkstyle"
# site, without verify (JDK21)
- JAVA_HOME: C:\Program Files\Java\JDK21
DESC: "site, without verify (JDK21)"
CMD: "./.ci/validation.cmd site_without_verify"
build_script:
- ps: |
$RUN_JOB=1
if ($RUN_JOB -eq 1) {
$Expr = (get-content env:CMD)
Write-Host "CMD: $Expr"
Invoke-Expression $Expr
Write-Host "CMD exited with exit code $LastExitCode"
if ($LastExitCode -ne 0) {
exit $LastExitCode
}
} else {
Write-Host "build is skipped ..."
}
- ps: ./.ci/validation.cmd git_diff
- ps: echo "Size of caches (bytes):"
- ps: Get-ChildItem -Recurse 'C:\Users\appveyor\.m2' | Measure-Object -Property Length -Sum
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/mirrors/checkstyle.git
git@gitee.com:mirrors/checkstyle.git
mirrors
checkstyle
checkstyle
master

搜索帮助