[rt-commit] r172 - /redwax-tool/trunk/Jenkinsfile

rt-commit at redwax.eu rt-commit at redwax.eu
Mon Mar 4 12:07:15 CET 2024


Author: minfrin at redwax.eu
Date: Mon Mar  4 12:07:13 2024
New Revision: 172

Log:
Initial add of a jenkinsfile.

Added:
    redwax-tool/trunk/Jenkinsfile

Added: redwax-tool/trunk/Jenkinsfile
==============================================================================
--- redwax-tool/trunk/Jenkinsfile	(added)
+++ redwax-tool/trunk/Jenkinsfile	Mon Mar  4 12:07:13 2024
@@ -0,0 +1,19 @@
+pipeline {
+  stages {
+    stage('autoreconf') {
+      steps {
+        sh 'autoreconf --force --install'
+      }
+    }
+    stage('configure') {
+      steps {
+        sh './configure --with-openssl --with-p11-kit --with-libical --with-keychain --with-ldns'
+      }
+    }
+    stage('make') {
+      steps {
+        sh 'make'
+      }
+    }
+  }
+}



More information about the rt-commit mailing list