[rs-commit] r465 - /mod_cms_sign/trunk/Jenkinsfile
rs-commit at redwax.eu
rs-commit at redwax.eu
Tue Oct 15 19:19:14 CEST 2024
Author: minfrin at redwax.eu
Date: Tue Oct 15 19:19:13 2024
New Revision: 465
Log:
Add interop and fedora
Modified:
mod_cms_sign/trunk/Jenkinsfile
Modified: mod_cms_sign/trunk/Jenkinsfile
==============================================================================
--- mod_cms_sign/trunk/Jenkinsfile (original)
+++ mod_cms_sign/trunk/Jenkinsfile Tue Oct 15 19:19:13 2024
@@ -3,12 +3,82 @@
stages {
stage('Build') {
parallel {
+ stage('Interop') {
+ agent { label 'interop' }
+ stages {
+ stage('mod_ca') {
+ steps {
+ dir("mod_ca") {
+ 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('restart httpd') {
+ steps {
+ sh 'sudo /usr/sbin/restart-httpd'
+ }
+ }
+ }
+ }
stage('RHEL9') {
agent { label 'rhel-9-x86_64' }
stages {
stage('mod_ca') {
steps {
- dir("mod_timestamp") {
+ dir("mod_ca") {
+ 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'
+ }
+ }
+ }
+ }
+ stage('Fedora41') {
+ agent { label 'fedora-41-x86_64' }
+ stages {
+ stage('mod_ca') {
+ steps {
+ dir("mod_ca") {
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'
More information about the rs-commit
mailing list