[rst-commit] r132 - in /redwax-signtext-adwaita/trunk: Jenkinsfile config.h.in

rst-commit at redwax.eu rst-commit at redwax.eu
Sun May 5 15:52:38 CEST 2024


Author: minfrin at redwax.eu
Date: Sun May  5 15:52:37 2024
New Revision: 132

Log:
Add Jenkinsfile.

Added:
    redwax-signtext-adwaita/trunk/Jenkinsfile
Modified:
    redwax-signtext-adwaita/trunk/config.h.in

Added: redwax-signtext-adwaita/trunk/Jenkinsfile
==============================================================================
--- redwax-signtext-adwaita/trunk/Jenkinsfile	(added)
+++ redwax-signtext-adwaita/trunk/Jenkinsfile	Sun May  5 15:52:37 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'
+              }
+            }
+          }
+        }
+
+      }
+    }
+  }
+}
+

Modified: redwax-signtext-adwaita/trunk/config.h.in
==============================================================================
--- redwax-signtext-adwaita/trunk/config.h.in	(original)
+++ redwax-signtext-adwaita/trunk/config.h.in	Sun May  5 15:52:37 2024
@@ -3,26 +3,26 @@
 /* Define to the gettext package name. */
 #undef GETTEXT_PACKAGE
 
-/* Define to 1 if you have the 'adw_entry_row_set_max_length' function. */
+/* Define to 1 if you have the `adw_entry_row_set_max_length' function. */
 #undef HAVE_ADW_ENTRY_ROW_SET_MAX_LENGTH
 
 /* Define to 1 if you have the <dlfcn.h> header file. */
 #undef HAVE_DLFCN_H
 
-/* Define to 1 if you have the 'gtk_box_append' function. */
+/* Define to 1 if you have the `gtk_box_append' function. */
 #undef HAVE_GTK_BOX_APPEND
 
-/* Define to 1 if you have the 'gtk_window_set_child' function. */
+/* Define to 1 if you have the `gtk_window_set_child' function. */
 #undef HAVE_GTK_WINDOW_SET_CHILD
 
 /* Define to 1 if you have the <inttypes.h> header file. */
 #undef HAVE_INTTYPES_H
 
+/* Define to 1 if you have the <memory.h> header file. */
+#undef HAVE_MEMORY_H
+
 /* Define to 1 if you have the <stdint.h> header file. */
 #undef HAVE_STDINT_H
-
-/* Define to 1 if you have the <stdio.h> header file. */
-#undef HAVE_STDIO_H
 
 /* Define to 1 if you have the <stdlib.h> header file. */
 #undef HAVE_STDLIB_H
@@ -66,9 +66,7 @@
 /* Define to the version of this package. */
 #undef PACKAGE_VERSION
 
-/* Define to 1 if all of the C89 standard headers exist (not just the ones
-   required in a freestanding environment). This macro is provided for
-   backward compatibility; new code need not use it. */
+/* Define to 1 if you have the ANSI C header files. */
 #undef STDC_HEADERS
 
 /* Version number of package */



More information about the rst-commit mailing list