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') { + + } +}