Jenkinsfile 수정: workspace 자동 정리 제거

- post 블록에서 always의 cleanWs() 제거
- 빌드 후 workspace 유지하도록 변경
- 디버깅 및 아티팩트 확인 용이하게 함
This commit is contained in:
hjmoons 2025-10-30 18:19:09 +09:00
parent 3483c9c1b2
commit ec4a23cc33

4
Jenkinsfile vendored
View File

@ -226,9 +226,5 @@ pipeline {
failure { failure {
echo "❌ Pipeline failed!" echo "❌ Pipeline failed!"
} }
always {
// Clean workspace
cleanWs()
}
} }
} }