From: Pat Thoyts Date: Tue, 23 Apr 2019 21:30:14 +0000 (+0100) Subject: Created Jenkinsfile for building on Jenkins. X-Git-Url: http://privyetmir.co.uk/gitweb?a=commitdiff_plain;p=srfdump Created Jenkinsfile for building on Jenkins. --- diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..fcf6941 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,21 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + cmakeBuild buildType: 'Release', + cleanBuild: true, + installation: 'InSearchPath', + steps: [[withCmake: true]] + } + } + } + post { + always { + recordIssues enabledForFailure: true, tools: [gcc4()] + } + success { + archiveArtifacts "srfdump" + } + } +} \ No newline at end of file