[rs-commit] r458 - /mod_ca/trunk/Jenkinsfile
rs-commit at redwax.eu
rs-commit at redwax.eu
Mon Oct 14 22:52:28 CEST 2024
Author: minfrin at redwax.eu
Date: Mon Oct 14 22:52:28 2024
New Revision: 458
Log:
Add a Fedora build.
Modified:
mod_ca/trunk/Jenkinsfile
Modified: mod_ca/trunk/Jenkinsfile
==============================================================================
--- mod_ca/trunk/Jenkinsfile (original)
+++ mod_ca/trunk/Jenkinsfile Mon Oct 14 22:52:28 2024
@@ -28,6 +28,31 @@
}
}
}
+ stage('Fedora41') {
+ agent { label 'fedora-41-x86_64' }
+ 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'
+ }
+ }
+ }
+ }
}
}
}
More information about the rs-commit
mailing list