From 446c155f78d5fd68a4e567eb0041b8d0f2426326 Mon Sep 17 00:00:00 2001 From: Nils Hoffmann Date: Wed, 11 Sep 2019 19:00:47 +0200 Subject: [PATCH] Added Jenkinsfile. --- Jenkinsfile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..c1598e3 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,23 @@ +pipeline { + agent none + options { + skipStagesAfterUnstable() + } + stages { + stage('Deliver') { + agent { + docker { + image 'cdrx/pyinstaller-windows:python2' + } + } + steps { + sh 'pyinstaller --distpath="LipidXplorer-1.2.8.${BUILD_NUMBER}" LipidXplorer.spec' + } + post { + success { + archiveArtifacts 'LipidXplorer-1.2.8.${BUILD_NUMBER}.zip' + } + } + } + } +} \ No newline at end of file -- GitLab