From 13061740719821927293d3a8cbadbd47ee919aa1 Mon Sep 17 00:00:00 2001 From: Olof hagsand Date: Thu, 14 Jun 2018 20:20:21 +0200 Subject: [PATCH] Jenkins pipeline file --- test/Jenkinsfile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 test/Jenkinsfile diff --git a/test/Jenkinsfile b/test/Jenkinsfile new file mode 100644 index 00000000..48314e84 --- /dev/null +++ b/test/Jenkinsfile @@ -0,0 +1,25 @@ +node { + stage('Checkout') { + git url: 'https://github.com/clicon/clixon.git' + checkout scm + } + + stage('Configure') { + /* `make check` returns non-zero on test failures, + * using `true` to allow the Pipeline to continue nonetheless + */ + sh 'make clean || true' + sh './configure || true' + } + + stage('Make') { + /* `make check` returns non-zero on test failures, + * using `true` to allow the Pipeline to continue nonetheless + */ + sh 'make || true' + } + + stage('Testing') { + + } +}