[rs-commit] r453 - /mod_pkcs7/trunk/Jenkinsfile
rs-commit at redwax.eu
rs-commit at redwax.eu
Tue Mar 5 23:00:12 CET 2024
Author: minfrin at redwax.eu
Date: Tue Mar 5 23:00:12 2024
New Revision: 453
Log:
Add jenkinsfile
Added:
mod_pkcs7/trunk/Jenkinsfile
Added: mod_pkcs7/trunk/Jenkinsfile
==============================================================================
--- mod_pkcs7/trunk/Jenkinsfile (added)
+++ mod_pkcs7/trunk/Jenkinsfile Tue Mar 5 23:00:12 2024
@@ -0,0 +1,44 @@
+pipeline {
+ agent none
+ stages {
+ stage('Build') {
+ parallel {
+ stage('RHEL9') {
+ agent { label 'rhel-9-x86_64' }
+ stages {
+ stage('mod_ca') {
+ steps {
+ dir("mod_timestamp") {
+ svn url: 'https://source.redwax.eu/svn/redwax/rs/mod_ca/trunk/'
+ sh 'autoreconf --force --install'
+ sh 'CFLAGS="-O0 -g -Wall" DESTDIR="${WORKSPACE}/target" ./configure'
+ sh 'DESTDIR="${WORKSPACE}/target" make install'
+ }
+ }
+ }
+ stage('autoreconf') {
+ steps {
+ sh 'autoreconf --force --install'
+ }
+ }
+ stage('configure') {
+ steps {
+ sh 'CFLAGS="-O0 -g -Wall -I${WORKSPACE}/target/usr/include/httpd" DESTDIR="${WORKSPACE}/target" ./configure'
+ }
+ }
+ stage('make install') {
+ steps {
+ sh 'DESTDIR="${WORKSPACE}/target" EXTRA_CFLAGS="-I${WORKSPACE}/target/usr/include/httpd" make install'
+ }
+ }
+ stage('make dist') {
+ steps {
+ sh 'make dist'
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
More information about the rs-commit
mailing list