[rst-commit] r89 - /redwax-signtext/trunk/Jenkinsfile

rst-commit at redwax.eu rst-commit at redwax.eu
Tue Mar 5 12:42:21 CET 2024


Author: minfrin at redwax.eu
Date: Tue Mar  5 12:42:20 2024
New Revision: 89

Log:
Add initial jenkinsfile.

Added:
    redwax-signtext/trunk/Jenkinsfile

Added: redwax-signtext/trunk/Jenkinsfile
==============================================================================
--- redwax-signtext/trunk/Jenkinsfile	(added)
+++ redwax-signtext/trunk/Jenkinsfile	Tue Mar  5 12:42:20 2024
@@ -0,0 +1,43 @@
+pipeline {
+  agent none
+  stages {
+    stage('Build') {
+      parallel {
+        stage('RHEL9') {
+          agent { label 'rhel-9-x86_64' }
+          stages {
+            stage('autoreconf') {
+              steps {
+                dir("src/linux") {
+                  sh 'autoreconf --force --install'
+                }
+              }
+            }
+            stage('configure') {
+              steps {
+                dir("src/linux") {
+                  sh './configure'
+                }
+              }
+            }
+            stage('make') {
+              steps {
+                dir("src/linux") {
+                  sh 'make'
+                }
+              }
+            }
+            stage('make dist') {
+              steps {
+                dir("src/linux") {
+                  sh 'make dist'
+                }
+              }
+            }
+          }
+        }
+      }
+    }
+  }
+}
+



More information about the rst-commit mailing list