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

rt-commit at redwax.eu rt-commit at redwax.eu
Sun Dec 1 13:59:07 CET 2024


Author: minfrin at redwax.eu
Date: Sun Dec  1 13:59:06 2024
New Revision: 195

Log:
Add Debian support.

Modified:
    redwax-tool/trunk/Jenkinsfile

Modified: redwax-tool/trunk/Jenkinsfile
==============================================================================
--- redwax-tool/trunk/Jenkinsfile	(original)
+++ redwax-tool/trunk/Jenkinsfile	Sun Dec  1 13:59:06 2024
@@ -78,6 +78,31 @@
             }
           }
         }
+        stage('Debian12') {
+          agent { label 'debian-12-x86_64' }
+          stages {
+            stage('autoreconf') {
+              steps {
+                sh 'autoreconf --force --install'
+              }
+            }
+            stage('configure') {
+              steps {
+                sh './configure --with-openssl --with-nss --with-p11-kit --with-libical --with-ldns --with-unbound'
+              }
+            }
+            stage('make') {
+              steps {
+                sh 'make'
+              }
+            }
+            stage('make dist') {
+              steps {
+                sh 'make dist'
+              }
+            }
+          }
+        }
       }
     }
   }



More information about the rt-commit mailing list