test
This commit is contained in:
parent
bcb8a3fd5a
commit
853e92a07e
10 changed files with 687 additions and 0 deletions
84
Jenkinsfile
vendored
Normal file
84
Jenkinsfile
vendored
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
pipeline {
|
||||
agent any
|
||||
|
||||
options { skipDefaultCheckout(true) }
|
||||
|
||||
environment {
|
||||
IMAGE_NAME = 'rd.jenkins'
|
||||
|
||||
AWS_URL = "test"
|
||||
AWS_USER = "test"
|
||||
AWS_REGION = "test"
|
||||
AWS_CREDS_ID = 'aws-jenkins'
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Checkout') {
|
||||
steps {
|
||||
cleanWs()
|
||||
|
||||
script {
|
||||
checkout scm
|
||||
|
||||
sh 'git submodule update --init --recursive'
|
||||
|
||||
def tagName = sh(
|
||||
script: "git describe --tags --exact-match 2>/dev/null || echo 'no-tag'",
|
||||
returnStdout: true
|
||||
).trim()
|
||||
|
||||
echo "Detected tag: ${tagName}"
|
||||
|
||||
if (tagName == 'no-tag') {
|
||||
echo "Not a tag build, skipping deployment."
|
||||
currentBuild.result = 'SUCCESS'
|
||||
error("Stopping pipeline: not a tag push.")
|
||||
}
|
||||
|
||||
if (!(tagName ==~ /^v[0-9]+\.[0-9]+(\.[0-9]+){0,2}$/)) {
|
||||
echo "[!] Invalid tag format. Expected format: vX.Y.Z.K"
|
||||
currentBuild.result = 'SUCCESS'
|
||||
error("Stopping pipeline: invalid tag format.")
|
||||
}
|
||||
|
||||
env.IMAGE_TAG = tagName
|
||||
env.AWS_IMAGE = "${AWS_URL}/${AWS_USER}/${IMAGE_NAME}:${IMAGE_TAG}"
|
||||
|
||||
echo "Tag validado: ${env.IMAGE_TAG}"
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
stage('Build Image') {
|
||||
steps {
|
||||
sh "echo ${AWS_IMAGE}"
|
||||
script {
|
||||
docker.build("${AWS_IMAGE}", '--no-cache --pull -f src/Service/Infrastructure/App/Dockerfile .')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// stage('AWS ECR Login') {
|
||||
// steps {
|
||||
// withAWS(credentials: AWS_CREDS_ID, region: AWS_REGION) {
|
||||
// script {
|
||||
// sh """
|
||||
// set -euo pipefail
|
||||
// echo "Logging in to AWS ECR: \${AWS_URL}"
|
||||
// aws ecr get-login-password --region "\${AWS_REGION}" \\
|
||||
// | docker login --username AWS --password-stdin "\${AWS_URL}"
|
||||
// """
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
// stage('Push Image') {
|
||||
// steps {
|
||||
// sh "docker push ${AWS_IMAGE}"
|
||||
// }
|
||||
// }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue