Compare commits

2 Commits

Author SHA1 Message Date
32343e9714 feat: Jenkins 파이프라인 파일 추가
Some checks failed
코드 품질 검사 / 린트 검사 (push) Failing after 12m10s
2026-02-01 21:02:28 +09:00
ec50d93d5e feature/new-gil (#1)
Some checks failed
코드 품질 검사 / 린트 검사 (push) Failing after 14m2s
신규 브랜치 머지

Reviewed-on: http://gilnas.synology.me:3000/gil/test-git/pulls/1
Co-authored-by: NEW_GIL_HOME\hyeon <hyeonggil2@gmail.com>
Co-committed-by: NEW_GIL_HOME\hyeon <hyeonggil2@gmail.com>
2026-02-01 07:58:36 +00:00

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 '빌드 실패! ❌'
}
}
}