[rst-commit] r131 - /redwax-signtext-gtk3/trunk/Jenkinsfile

rst-commit at redwax.eu rst-commit at redwax.eu
Sun May 5 15:48:26 CEST 2024


Author: minfrin at redwax.eu
Date: Sun May  5 15:48:25 2024
New Revision: 131

Log:
Add Jenkinsfile.

Added:
    redwax-signtext-gtk3/trunk/Jenkinsfile

Added: redwax-signtext-gtk3/trunk/Jenkinsfile
==============================================================================
--- redwax-signtext-gtk3/trunk/Jenkinsfile	(added)
+++ redwax-signtext-gtk3/trunk/Jenkinsfile	Sun May  5 15:48:25 2024
@@ -0,0 +1,41 @@
+pipeline {
+  agent none
+  stages {
+    stage('Build') {
+      parallel {
+        stage('RHEL9') {
+          agent { label 'rhel-9-x86_64' }
+          stages {
+            stage('autoreconf') {
+              steps {
+                sh 'autoreconf --force --install'
+              }
+            }
+            stage('configure') {
+              steps {
+                sh './configure'
+              }
+            }
+            stage('make') {
+              steps {
+                sh 'make'
+              }
+            }
+            stage('make dist') {
+              steps {
+                sh 'make dist'
+              }
+            }
+            stage('rpmbuild') {
+              steps {
+                sh 'rpmbuild -tb redwax-signtext-*.tar.bz2'
+              }
+            }
+          }
+        }
+
+      }
+    }
+  }
+}
+



More information about the rst-commit mailing list