Created Jenkinsfile for building on Jenkins. master
authorPat Thoyts <patthoyts@users.sourceforge.net>
Tue, 23 Apr 2019 21:30:14 +0000 (22:30 +0100)
committerPat Thoyts <patthoyts@users.sourceforge.net>
Thu, 6 Jun 2019 21:19:49 +0000 (22:19 +0100)
Jenkinsfile [new file with mode: 0644]

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644 (file)
index 0000000..fcf6941
--- /dev/null
@@ -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