prepare for CI
gitea/postgresql-bouncernotice/pipeline/head There was a failure building this commit Details

This commit is contained in:
Pierre Ducroquet 2023-09-21 12:28:59 +02:00
parent 277d659296
commit a5fb6b0777
2 changed files with 51 additions and 0 deletions

38
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,38 @@
@Library('eo-jenkins-lib@main') import eo.Utils
pipeline {
agent any
options { disableConcurrentBuilds() }
stages {
stage('Packaging') {
steps {
script {
env.SHORT_JOB_NAME=sh(
returnStdout: true,
// given JOB_NAME=gitea/project/PR-46, returns project
// given JOB_NAME=project/main, returns project
script: '''
echo "${JOB_NAME}" | sed "s/gitea\\///" | awk -F/ '{print $1}'
'''
).trim()
if (env.GIT_BRANCH == 'main' || env.GIT_BRANCH == 'origin/main') {
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d bullseye,bookworm ${SHORT_JOB_NAME}"
} else if (env.GIT_BRANCH.startsWith('hotfix/')) {
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d bullseye,bookworm --branch ${env.GIT_BRANCH} --hotfix ${SHORT_JOB_NAME}"
}
}
}
}
}
post {
always {
script {
utils = new Utils()
utils.mail_notify(currentBuild, env, 'ci+postgresql-bouncernotice@entrouvert.org')
}
}
success {
cleanWs()
}
}
}

View File

@ -1,5 +1,18 @@
VERSION=`git describe | sed 's/^v//; s/-/./g' `
NAME=postgresql-bouncernotice
MODULES = $(patsubst %.c,%,$(wildcard src/*.c))
PG_CONFIG ?= pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
version:
@(echo $(VERSION))
name:
@(echo $(NAME))
fullname:
@(echo $(NAME)-$(VERSION))