[rs-commit] r509 - /mod_ca/trunk/Jenkinsfile
rs-commit at redwax.eu
rs-commit at redwax.eu
Thu Sep 11 10:28:47 CEST 2025
Author: minfrin at redwax.eu
Date: Thu Sep 11 10:28:46 2025
New Revision: 509
Log:
Add RHEL10 builder.
Modified:
mod_ca/trunk/Jenkinsfile
Modified: mod_ca/trunk/Jenkinsfile
==============================================================================
--- mod_ca/trunk/Jenkinsfile (original)
+++ mod_ca/trunk/Jenkinsfile Thu Sep 11 10:28:46 2025
@@ -53,6 +53,31 @@
}
}
}
+ stage('RHEL10') {
+ agent { label 'rhel-10-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'
+ }
+ }
+ }
+ }
stage('FedoraRawhide') {
agent { label 'fedora-rawhide-x86_64' }
stages {
More information about the rs-commit
mailing list