pixelfed-container/Jenkinsfile

88 lines
3.4 KiB
Plaintext
Raw Normal View History

2020-10-30 18:49:09 +01:00
version = ""
2020-05-28 18:19:38 +02:00
project = "pixelfed"
repo = "zknt"
registry = "reg.zknt.org"
timeStamp = Calendar.getInstance().getTime().format('YYYY-MM-dd',TimeZone.getTimeZone('UTC'))
pipeline {
agent any
2023-06-06 00:16:19 +02:00
environment {
ZKNT_CRED = credentials("6ff44976-23cd-4cc2-902c-de8c340e65e5")
IO_CRED = credentials("3deeee3d-6fce-4430-98dd-9b4db56f43f7")
QUAY_CRED = credentials("18fb6f7e-c6bc-4d06-9bf9-08c2af6bfc1a")
2020-05-28 18:19:38 +02:00
}
2020-10-30 18:49:09 +01:00
stages {
stage('Build image') {
steps {
2023-06-06 00:16:19 +02:00
script {
sh "buildah login -u " + ZKNT_CRED_USR + " -p " + ZKNT_CRED_PSW + " reg.zknt.org"
def image = registry + '/' + repo + '/' + project
2023-10-07 15:08:30 +02:00
sh "buildah bud -f Containerfile --build-arg DATE=$timeStamp -t pixelfed:dev"
sh "buildah bud -f Containerfile.fpm --build-arg DATE=$timeStamp -t pixelfed:dev-fpm"
sh "buildah tag pixelfed:dev reg.zknt.org/zknt/pixelfed:dev"
sh "buildah tag pixelfed:dev reg.zknt.org/zknt/pixelfed:latest"
sh "buildah tag pixelfed:dev-fpm reg.zknt.org/zknt/pixelfed:dev-fpm"
sh "buildah tag pixelfed:dev-fpm reg.zknt.org/zknt/pixelfed:fpm"
sh "buildah push reg.zknt.org/zknt/pixelfed:dev'
sh "buildah push reg.zknt.org/zknt/pixelfed:latest'
sh "buildah push reg.zknt.org/zknt/pixelfed:dev-fpm'
sh "buildah push reg.zknt.org/zknt/pixelfed:fpm'
2023-06-06 00:16:19 +02:00
}
script {
2023-06-09 19:55:53 +02:00
sh "buildah login -u " + IO_CRED_USR+ " -p " + IO_CRED_PSW + " docker.io"
2023-10-07 15:08:30 +02:00
sh "buildah tag pixelfed:dev docker.io/zknt/pixelfed:dev"
sh "buildah tag pixelfed:dev docker.io/zknt/pixelfed:latest"
sh "buildah tag pixelfed:dev-fpm docker.io/zknt/pixelfed:dev-fpm"
sh "buildah tag pixelfed:dev-fpm docker.io/zknt/pixelfed:fpm"
sh "buildah push docker.io/zknt/pixelfed:dev"
sh "buildah push docker.io/zknt/pixelfed:dev-fpm"
sh "buildah push docker.io/zknt/pixelfed:latest"
2023-08-09 11:13:30 +02:00
sh "buildah push docker.io/zknt/pixelfed:fpm"
2023-06-06 00:16:19 +02:00
}
script {
2023-06-09 19:55:53 +02:00
sh "buildah login -u " + QUAY_CRED_USR+ " -p " + QUAY_CRED_PSW + " quay.io"
2023-10-07 15:08:30 +02:00
sh "buildah tag pixelfed:dev quay.io/zknt/pixelfed:dev"
sh "buildah tag pixelfed:dev quay.io/zknt/pixelfed:latest"
sh "buildah tag pixelfed:dev-fpm quay.io/zknt/pixelfed:dev-fpm"
sh "buildah tag pixelfed:dev-fpm quay.io/zknt/pixelfed:fpm"
sh "buildah push quay.io/zknt/pixelfed:dev"
sh "buildah push quay.io/zknt/pixelfed:latest"
sh "buildah push quay.io/zknt/pixelfed:dev-fpm"
2023-08-09 11:13:30 +02:00
sh "buildah push quay.io/zknt/pixelfed:fpm"
2020-05-28 18:19:38 +02:00
}
}
}
}
post {
2020-11-04 01:54:50 +01:00
always {
2023-06-07 04:34:44 +02:00
sh """buildah rmi -af"""
2023-07-17 10:49:42 +02:00
emailext body: 'build finished', subject: '[jenkins] docker '+project+'('+timeStamp+'-test): ' + currentBuild.result, to: 'cg@zknt.org', from: 'sysadm@zknt.org', attachLog: true
2020-06-22 14:10:13 +02:00
}
2020-05-28 18:19:38 +02:00
}
options {
buildDiscarder(BuildHistoryManager([
[
conditions: [
BuildResult(matchFailure: true)
],
matchAtMost: 4,
continueAfterMatch: false
],
[
conditions: [
BuildResult(matchSuccess: true)
],
matchAtMost: 4,
continueAfterMatch: false
],
[
conditions: [
BuildResult(matchSuccess: true, matchFailure: true)
],
actions: [DeleteBuild()]
]
]))
}
2023-06-06 00:16:19 +02:00
}