Files
uptime-kuma/Jenkinsfile
Lucas 9ff77f197e
All checks were successful
jenkins-ci Build successful
feat: switch to multi instance automated by jenkins
2026-01-23 13:40:02 +00:00

59 lines
2.1 KiB
Groovy

pipeline {
agent any
parameters {
choice(name: 'USER_NAME', choices: ['lucas', 'cyrus'], description: 'Quelle instance déployer ?')
}
environment {
GITEA_REPO_PATH = "lucas/uptime-kuma"
GITEA_API_URL = "https://gitea.lucasroyer.fr/api/v1"
DOCKER_HOST = "unix:///run/user/1001/docker.sock"
}
stages {
stage('Check git...') {
steps {
checkout scm
}
}
stage('Deploy') {
steps {
echo "Deploy new kuma for ${params.USER_NAME}..."
sh """
USER_NAME=${params.USER_NAME} \
docker compose -p ${params.USER_NAME} up -d --force-recreate --remove-orphans
"""
}
}
}
post {
always {
script {
echo "Send Gitea check..."
// Get and store SHA
def commitSha = sh(script: 'git rev-parse HEAD', returnStdout: true).trim()
// Convert from Jenkins to Gitea API
def buildState = (currentBuild.currentResult == 'SUCCESS') ? 'success' : 'failure'
def buildDesc = (currentBuild.currentResult == 'SUCCESS') ? 'Build successful' : 'Build failed'
// Send it to Gitea API with secret 'gitea-token'
withCredentials([string(credentialsId: 'gitea-token', variable: 'GITEA_TOKEN')]) {
// Use \$TOKEN to avoid jenkins to print token in logs
sh """
curl -f -X POST "${GITEA_API_URL}/repos/${GITEA_REPO_PATH}/statuses/${commitSha}" \
-H "Authorization: token \$GITEA_TOKEN" \
-H "Content-Type: application/json" \
-d '{"state": "${buildState}", "target_url": "${env.BUILD_URL}", "description": "${buildDesc}", "context": "jenkins-ci"}'
"""
}
}
echo "Clean unused image..."
sh "docker image prune -f"
}
success { echo "Success !" }
failure { echo "Failed." }
}
}