diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..82e1b26 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,29 @@ +@Library('eo-jenkins-lib@master') import eo.Utils + +pipeline { + agent any + stages { + stage('Packaging') { + steps { + script { + if (env.JOB_NAME == 'passerelle-reunion-pastell' && env.GIT_BRANCH == 'origin/master') { + sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d stretch passerelle-reunion-pastell' + } else if (env.GIT_BRANCH.startsWith('hotfix/')) { + sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d stretch --branch ${env.GIT_BRANCH} --hotfix passerelle-reunion-pastell" + } + } + } + } + } + post { + always { + script { + utils = new Utils() + utils.mail_notify(currentBuild, env, 'ci+jenkins-passerelle-reunion-pastell@entrouvert.org') + } + } + success { + cleanWs() + } + } +} diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..9840515 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +passerelle-reunion-pastell (0-0) unstable; urgency=low + + * initial packaging. + + -- Emmanuel Cazenave Wed, 16 Oct 2019 07:44:31 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..65a8ca0 --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: passerelle-reunion-pastell +Maintainer: Nicolas Clain +Section: python +Priority: optional +Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.7), debhelper (>= 9), python-django +Standards-Version: 3.9.1 + +Package: python-passerelle-reunion-pastell +Architecture: all +Depends: ${misc:Depends}, ${python:Depends} +Description: Passerelle connector to passerelle + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..4647c9c --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ --with python2 diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)