mirror of
https://github.com/won-ktds/smarketing-backend.git
synced 2025-12-06 07:06:24 +00:00
Update Jenkinsfile
This commit is contained in:
parent
68baed5d27
commit
ad0d6bb197
24
smarketing-java/deployment/Jenkinsfile
vendored
24
smarketing-java/deployment/Jenkinsfile
vendored
@ -37,6 +37,30 @@ podTemplate(
|
|||||||
namespace = "${props.namespace}"
|
namespace = "${props.namespace}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage('Debug Project Structure') {
|
||||||
|
container('gradle') {
|
||||||
|
sh """
|
||||||
|
echo "=== 현재 디렉토리 확인 ==="
|
||||||
|
pwd
|
||||||
|
|
||||||
|
echo "=== 루트 디렉토리 파일 목록 ==="
|
||||||
|
ls -la
|
||||||
|
|
||||||
|
echo "=== gradlew 파일 찾기 ==="
|
||||||
|
find . -name "gradlew" -type f 2>/dev/null || echo "gradlew 파일을 찾을 수 없습니다"
|
||||||
|
|
||||||
|
echo "=== build.gradle 파일 찾기 ==="
|
||||||
|
find . -name "build.gradle" -type f 2>/dev/null || echo "build.gradle 파일을 찾을 수 없습니다"
|
||||||
|
|
||||||
|
echo "=== settings.gradle 파일 찾기 ==="
|
||||||
|
find . -name "settings.gradle" -type f 2>/dev/null || echo "settings.gradle 파일을 찾을 수 없습니다"
|
||||||
|
|
||||||
|
echo "=== 디렉토리 트리 구조 (깊이 2) ==="
|
||||||
|
find . -maxdepth 2 -type d | sort
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('Build Application') {
|
stage('Build Application') {
|
||||||
container('gradle') {
|
container('gradle') {
|
||||||
sh """
|
sh """
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user