본문 바로가기
[AWS-FRF]/CICD

[중요][AWS] 젠킨스 Build step 'Invoke Gradle script' marked build as failure 에러 발생 해결!!

by METAVERSE STORY 2024. 9. 13.
반응형
728x170

 

 

 

 

 

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 4m 52s
7 actionable tasks: 7 executed
Build step 'Invoke Gradle script' changed build result to FAILURE
Build step 'Invoke Gradle script' marked build as failure
SSH: Current build result is [FAILURE], not going to run.
Finished: FAILURE

 

 

## DEV 브랜치 선택 

## build.gradle 내용 수정 필요

ignoreFailures = true 변경 할것!!

 

pmd {
    toolVersion = "6.35.0"
    sourceSets = [sourceSets.main]
    ruleSetFiles = files("ruleset.xml")
    ignoreFailures = true
}

 

 

 

 

반응형
그리드형

댓글