Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

공유메모장

jenkins build 시 test 쪽에서 문제 생길 때, test class를 제외시키고 build하는 방법 본문

카테고리 없음

jenkins build 시 test 쪽에서 문제 생길 때, test class를 제외시키고 build하는 방법

댕칠이 2024. 7. 25. 17:25

    stage('Build') {
steps {
         //프로젝트 권한 변경
         sh 'chmod +x ./backend/gradlew'
         //프로젝트 빌드
            sh "cd backend && ./gradlew clean build -x test"
         }
}