[rs-commit] r459 - /mod_ca/trunk/Jenkinsfile
rs-commit at redwax.eu
rs-commit at redwax.eu
Tue Oct 15 18:40:51 CEST 2024
Author: minfrin at redwax.eu
Date: Tue Oct 15 18:40:50 2024
New Revision: 459
Log:
Add interop target.
Modified:
mod_ca/trunk/Jenkinsfile
Modified: mod_ca/trunk/Jenkinsfile
==============================================================================
--- mod_ca/trunk/Jenkinsfile (original)
+++ mod_ca/trunk/Jenkinsfile Tue Oct 15 18:40:50 2024
@@ -3,6 +3,31 @@
stages {
stage('Build') {
parallel {
+ stage('Interop') {
+ agent { label 'interop' }
+ stages {
+ stage('autoreconf') {
+ steps {
+ sh 'autoreconf --force --install'
+ }
+ }
+ stage('configure') {
+ steps {
+ sh 'CFLAGS="-O0 -g -Wall" DESTDIR="${WORKSPACE}/target" ./configure'
+ }
+ }
+ stage('make install') {
+ steps {
+ sh 'DESTDIR="${WORKSPACE}/target" make install'
+ }
+ }
+ stage('make dist') {
+ steps {
+ sh 'make dist'
+ }
+ }
+ }
+ }
stage('RHEL9') {
agent { label 'rhel-9-x86_64' }
stages {
More information about the rs-commit
mailing list