"Jenkinsfile 개선:

- Tomcat 배포 구조 → WebLogic 기반으로 변경
- stage별 agent 명시 및 불필요한 환경변수 제거
- Webhook 알림 로직 추가"
This commit is contained in:
Rinjae
2026-07-09 16:20:54 +09:00
parent 46463a27a4
commit e3fb52343d
Vendored
+127 -133
View File
@@ -1,163 +1,157 @@
pipeline { pipeline {
agent { label 'djb-vm' } agent none
options { options {
timestamps() timestamps()
disableConcurrentBuilds() disableConcurrentBuilds()
skipDefaultCheckout() // stage별 agent의 자동 SCM checkout 방지 (Deploy 노드는 git 접근 불필요, unstash로만 WAR 수신)
buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '20')) buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '20'))
} }
environment { environment {
JAVA_HOME = '/apps/opts/jdk8'
JAVA_HOME_TOMCAT = '/apps/opts/jdk17'
GRADLE_HOME = '/apps/opts/gradle-8.7'
GRADLE_USER_HOME = '/apps/opts/gradle-home'
NODE_HOME = '/apps/opts/node-v24'
PATH = "/apps/opts/jdk8/bin:/apps/opts/gradle-8.7/bin:/apps/opts/node-v24/bin:/apps/opts/bin:${env.PATH}"
GIT_SSH_COMMAND = 'ssh -o StrictHostKeyChecking=accept-new' GIT_SSH_COMMAND = 'ssh -o StrictHostKeyChecking=accept-new'
CATALINA_BASE = '/prod/eapim/apigw' WEBHOOK_URL = 'http://172.30.1.50:18000/api/hooks/01ba51b01d3c4c98ae8f3183a23a84ed713197857d024b5da4f303458195eb32'
CATALINA_HOME = '/prod/eapim/apache-tomcat-9.0.116'
CATALINA_PID = '/prod/eapim/apigw/logs/catalina.pid'
DEPLOY_HTTP_PORT = '39110'
} }
stages { stages {
stage('Checkout') { stage('Build (djb-vm)') {
steps { agent { label 'djb-vm' }
checkout scm environment {
JAVA_HOME = '/apps/opts/jdk8'
GRADLE_HOME = '/apps/opts/gradle-8.7'
GRADLE_USER_HOME = '/apps/opts/gradle-home'
NODE_HOME = '/apps/opts/node-v24'
PATH = "/apps/opts/jdk8/bin:/apps/opts/gradle-8.7/bin:/apps/opts/node-v24/bin:/apps/opts/bin:${env.PATH}"
} }
} stages {
stage('Checkout') {
steps { checkout scm }
}
stage('Checkout modules') { stage('Checkout modules') {
steps { steps {
sh ''' sh '''
set -eu set -eu
for REPO in elink-online-core elink-online-transformer elink-online-common elink-online-emsclient elink-online-core-jpa; do for REPO in elink-online-core elink-online-transformer elink-online-common elink-online-emsclient elink-online-core-jpa; do
if [ ! -e "$REPO/.git" ]; then if [ ! -e "$REPO/.git" ]; then
rm -rf "$REPO" rm -rf "$REPO"
git clone --depth=1 --branch master \ git clone --depth=1 --branch master \
"ssh://git@172.30.1.50:2222/djb-eapim/$REPO.git" \ "ssh://git@172.30.1.50:2222/djb-eapim/$REPO.git" \
"$REPO" "$REPO"
else else
git -C "$REPO" fetch --depth=1 origin master git -C "$REPO" fetch --depth=1 origin master
git -C "$REPO" reset --hard origin/master git -C "$REPO" reset --hard origin/master
git -C "$REPO" clean -fdx git -C "$REPO" clean -fdx
fi fi
done done
''' '''
} }
} }
stage('Verify toolchain') { stage('Verify toolchain') {
steps { steps {
sh ''' sh '''
set -eu set -eu
java -version java -version
gradle --version gradle --version
''' '''
} }
} }
stage('Build WAR') { stage('Build WAR') {
steps { steps { sh 'gradle clean build -x test --no-daemon -Pprofile=weblogic' }
sh 'gradle clean build -x test --no-daemon' post {
} success {
post { sh '''
success { set -eu
sh ''' cd build/libs
set -eu sha256sum eapim-online.war > eapim-online.war.sha256
cd build/libs '''
sha1sum eapim-online.war > eapim-online.war.sha1 archiveArtifacts artifacts: 'build/libs/eapim-online.war,build/libs/eapim-online.war.sha256', fingerprint: true
sha256sum eapim-online.war > eapim-online.war.sha256 stash name: 'war', includes: 'build/libs/eapim-online.war'
md5sum eapim-online.war > eapim-online.war.md5 }
''' }
archiveArtifacts artifacts: 'build/libs/eapim-online.war,build/libs/eapim-online.war.sha1,build/libs/eapim-online.war.sha256,build/libs/eapim-online.war.md5', fingerprint: true
} }
} }
} }
stage('Stop Tomcat') { stage('Deploy (weblogic)') {
steps { agent { label 'weblogic' }
sh ''' environment {
set +e JENKINS_NODE_COOKIE = 'dontKillMe' // background weblogic를 빌드 종료 시 죽이지 않게
systemctl --user stop eapim-apigw 2>/dev/null WL_HOME = '/app/eapim/apigw'
WL_DEPLOY_DIR = '/app/eapim/apigw'
if [ -f "$CATALINA_PID" ] && kill -0 "$(cat "$CATALINA_PID")" 2>/dev/null; then WL_WAR_NAME = 'eapim-online.war'
JAVA_HOME="$JAVA_HOME_TOMCAT" "$CATALINA_HOME/bin/shutdown.sh" 30 -force || true WL_HTTP_PORT = '39110'
for i in $(seq 1 30); do WL_NOHUP = '/logs/weblogic/domains/eapimDomain/nohup.agwSvr11.out'
[ -f "$CATALINA_PID" ] && kill -0 "$(cat "$CATALINA_PID")" 2>/dev/null || break
sleep 1
done
fi
rm -f "$CATALINA_PID"
'''
} }
} stages {
stage('Stop WebLogic') {
steps {
sh '"$WL_HOME/stopAgw11.sh"' // 동기: 완전 종료까지 블록, 미기동 시에도 안전
}
}
stage('Deploy WAR') {
steps {
unstash 'war'
sh '''
set -eu
cp build/libs/eapim-online.war "$WL_DEPLOY_DIR/$WL_WAR_NAME"
ls -la "$WL_DEPLOY_DIR"
'''
}
}
stage('Start WebLogic and readiness') {
steps {
sh '''
set -eu
"$WL_HOME/startAgw11.sh" # nohup & 로 백그라운드 기동, 즉시 리턴
stage('Deploy ROOT.war') { DEADLINE=$(($(date +%s) + 300))
steps { STATUS=000
sh ''' while [ "$(date +%s)" -lt "$DEADLINE" ]; do
set -eu STATUS=$(curl -sS -o /dev/null -w '%{http_code}' --max-time 3 \
DEPLOY_DIR="$CATALINA_BASE/webapps" "http://localhost:$WL_HTTP_PORT/" 2>/dev/null || echo "000")
rm -rf "$DEPLOY_DIR/ROOT" "$DEPLOY_DIR/ROOT.war" case "$STATUS" in
cp build/libs/eapim-online.war "$DEPLOY_DIR/ROOT.war" 200|302|401|403|404) echo "Readiness OK (/ HTTP $STATUS)"; break ;;
ls -la "$DEPLOY_DIR" esac
''' sleep 3
} done
}
stage('Start Tomcat and readiness') { case "$STATUS" in
steps { 200|302|401|403|404) ;;
sh ''' *)
set -eu echo "Readiness failed within 300s, last HTTP=$STATUS"
LOG="$CATALINA_BASE/logs/catalina.$(date +%Y-%m-%d).log" [ -f "$WL_NOHUP" ] && tail -120 "$WL_NOHUP"
BEFORE=0 exit 1
[ -f "$LOG" ] && BEFORE=$(stat -c %s "$LOG") ;;
esac
systemctl --user start eapim-apigw '''
}
PROBE_URL="http://localhost:$DEPLOY_HTTP_PORT/" }
DEADLINE=$(($(date +%s) + 300))
STATUS=000
while [ "$(date +%s)" -lt "$DEADLINE" ]; do
STATUS=$(curl -sS -o /dev/null -w '%{http_code}' --max-time 3 \
"$PROBE_URL" 2>/dev/null || echo "000")
case "$STATUS" in
200|302|401|403|404)
echo "Readiness OK ($PROBE_URL HTTP $STATUS)"
break
;;
esac
if [ -f "$LOG" ] && tail -c +$((BEFORE+1)) "$LOG" | grep -qE "Application listener .* Exception|SEVERE.*startup.Catalina"; then
echo "Startup error detected in log"
tail -c +$((BEFORE+1)) "$LOG" | tail -80
exit 1
fi
sleep 2
done
case "$STATUS" in
200|302|401|403|404) ;;
*)
echo "Readiness probe failed within 300s, last HTTP status: $STATUS"
echo "--- last 300 lines of catalina log ---"
[ -f "$LOG" ] && tail -c +$((BEFORE+1)) "$LOG" | tail -300
echo "--- systemd unit status ---"
systemctl --user status eapim-apigw --no-pager || true
echo "--- listening ports ---"
ss -tlnp 2>/dev/null | grep -E ":$DEPLOY_HTTP_PORT\\b" || echo "(port $DEPLOY_HTTP_PORT not listening)"
exit 1
;;
esac
echo "--- key boot log lines ---"
tail -c +$((BEFORE+1)) "$LOG" | grep -E "Server startup|Deployment of web" | head -10 || true
'''
} }
} }
} }
post {
success {
node('weblogic') {
sh '''
set +e
payload=$(printf '{"text":"[%s #%s](%s) SUCCESS"}' "$JOB_NAME" "$BUILD_NUMBER" "$BUILD_URL")
curl -sS --fail --max-time 5 -H 'Content-Type: application/json' -X POST --data "$payload" "$WEBHOOK_URL" >/dev/null || echo "Webhook failed"
'''
}
}
failure {
node('weblogic') {
sh '''
set +e
payload=$(printf '{"text":"[%s #%s](%s) FAILURE"}' "$JOB_NAME" "$BUILD_NUMBER" "$BUILD_URL")
curl -sS --fail --max-time 5 -H 'Content-Type: application/json' -X POST --data "$payload" "$WEBHOOK_URL" >/dev/null || echo "Webhook failed"
'''
}
}
}
} }