hedera-web/Jenkinsfile

121 lines
3.6 KiB
Plaintext
Raw Normal View History

2020-01-17 12:07:01 +00:00
#!/usr/bin/env groovy
2024-02-22 08:25:38 +00:00
def BRANCH_ENV = [
test: 'test',
master: 'production'
]
2024-07-04 09:08:26 +00:00
def remote = [:]
2024-02-22 08:25:38 +00:00
node {
stage('Setup') {
env.NODE_ENV = BRANCH_ENV[env.BRANCH_NAME] ?: 'dev'
echo "NODE_NAME: ${env.NODE_NAME}"
echo "WORKSPACE: ${env.WORKSPACE}"
}
}
2020-01-17 12:07:01 +00:00
pipeline {
2020-01-21 08:01:05 +00:00
agent any
2020-01-17 12:07:01 +00:00
environment {
PROJECT_NAME = 'hedera-web'
}
stages {
2022-10-10 11:22:17 +00:00
stage('Debuild') {
2020-01-17 12:07:01 +00:00
when {
2022-05-05 09:19:29 +00:00
anyOf {
branch 'master'
branch 'test'
}
2020-01-17 12:07:01 +00:00
}
2020-01-21 08:00:03 +00:00
agent {
docker {
2024-07-04 16:42:34 +00:00
image 'registry.verdnatura.es/debuild:2.23.4-vn4'
2020-01-21 08:00:03 +00:00
registryUrl 'https://registry.verdnatura.es/'
registryCredentialsId 'docker-registry'
2024-07-04 16:42:34 +00:00
args '-u root'
2020-01-21 08:00:03 +00:00
}
}
2020-01-17 12:07:01 +00:00
steps {
2024-07-04 17:00:35 +00:00
sh 'debuild -us -uc -b'
sh 'mkdir -p output'
sh 'cp ../*.deb output'
2024-07-04 16:45:32 +00:00
sh 'sleep 86400'
2024-07-04 09:08:26 +00:00
}
}
stage('Reprepro') {
when {
anyOf {
branch 'master'
branch 'test'
}
}
steps {
script {
remote.name = 'reprerpo'
remote.host = 'reprepro.reprepro'
remote.user = 'root'
remote.identityFile = '/home/jenkins/.ssh/id_ed25519'
remote.allowAnyHosts = true
}
sshPut([
remote: remote,
from: "$debFile",
into: '/tmp'
])
sshcommand([
remote: remote,
command: "sudo -u www-data reprepro -b /reprepro --gnupghome /reprepro/.gnupg includedeb bookworm /tmp/$debFile"
])
2020-01-17 12:07:01 +00:00
}
}
2022-10-10 11:22:17 +00:00
stage('Container') {
2020-01-21 08:00:03 +00:00
when {
2022-05-05 09:19:29 +00:00
anyOf {
branch 'master'
branch 'test'
}
2020-01-21 08:00:03 +00:00
}
environment {
CREDS = credentials('docker-registry')
}
steps {
2024-02-22 08:25:38 +00:00
script {
def packageJson = readJSON file: 'package.json'
2024-07-04 09:51:48 +00:00
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
2024-02-22 08:25:38 +00:00
}
2020-01-21 08:00:03 +00:00
sh 'docker login --username $CREDS_USR --password $CREDS_PSW $REGISTRY'
2020-01-21 08:56:35 +00:00
sh 'docker-compose build --build-arg BUILD_ID=$BUILD_ID --parallel'
2020-01-21 08:00:03 +00:00
sh 'docker-compose push'
}
}
stage('Deploy') {
when {
2022-05-05 09:19:29 +00:00
anyOf {
branch 'master'
branch 'test'
}
2020-01-21 08:00:03 +00:00
}
steps {
2024-02-22 08:25:38 +00:00
script {
def packageJson = readJSON file: 'package.json'
2024-07-04 09:51:48 +00:00
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
2024-02-22 08:25:38 +00:00
}
2024-05-27 08:11:03 +00:00
withKubeConfig([
serverUrl: "$KUBERNETES_API",
credentialsId: 'kubernetes',
namespace: 'salix'
]) {
sh 'kubectl set image deployment/hedera-web-$BRANCH_NAME hedera-web-$BRANCH_NAME=$REGISTRY/hedera-web:$VERSION'
sh 'kubectl set image deployment/hedera-web-cron-$BRANCH_NAME hedera-web-cron-$BRANCH_NAME=$REGISTRY/hedera-web:$VERSION'
}
2020-01-21 08:00:03 +00:00
}
}
2020-01-17 12:07:01 +00:00
}
post {
2022-05-05 09:05:05 +00:00
unsuccessful {
2024-02-22 08:25:38 +00:00
setEnv()
2021-04-29 22:20:36 +00:00
sendEmail()
2020-01-17 12:07:01 +00:00
}
}
2022-05-05 09:05:05 +00:00
}