feat: Jenkins 파이프라인 파일 추가
Some checks failed
코드 품질 검사 / 린트 검사 (push) Failing after 12m10s

This commit is contained in:
2026-02-01 21:02:28 +09:00
parent ec50d93d5e
commit 32343e9714

34
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,34 @@
pipeline {
agent any
stages {
stage('Checkout') {
steps {
echo 'Checking out code...'
checkout scm
}
}
stage('Test Docker') {
steps {
sh 'docker --version'
sh 'docker ps'
}
}
stage('Build') {
steps {
echo 'Build stage - 나중에 docker build 추가'
}
}
}
post {
success {
echo '빌드 성공! ✅'
}
failure {
echo '빌드 실패! ❌'
}
}
}