[rs-commit] r437 - /mod_ca/trunk/Jenkinsfile
rs-commit at redwax.eu
rs-commit at redwax.eu
Tue Mar 5 14:52:34 CET 2024
Author: minfrin at redwax.eu
Date: Tue Mar 5 14:52:34 2024
New Revision: 437
Log:
Add initial Jenkinsfile.
Added:
mod_ca/trunk/Jenkinsfile
Added: mod_ca/trunk/Jenkinsfile
==============================================================================
--- mod_ca/trunk/Jenkinsfile (added)
+++ mod_ca/trunk/Jenkinsfile Tue Mar 5 14:52:34 2024
@@ -0,0 +1,59 @@
+pipeline {
+ agent none
+ stages {
+ stage('Build') {
+ parallel {
+ stage('MacOS') {
+ agent { label 'macos' }
+ stages {
+ stage('autoreconf') {
+ steps {
+ sh 'autoreconf --force --install'
+ }
+ }
+ stage('configure') {
+ steps {
+ sh './configure'
+ }
+ }
+ stage('make') {
+ steps {
+ sh 'make'
+ }
+ }
+ stage('make dist') {
+ steps {
+ sh 'make dist'
+ }
+ }
+ }
+ }
+ stage('RHEL9') {
+ agent { label 'rhel-9-x86_64' }
+ stages {
+ stage('autoreconf') {
+ steps {
+ sh 'autoreconf --force --install'
+ }
+ }
+ stage('configure') {
+ steps {
+ sh './configure'
+ }
+ }
+ stage('make') {
+ steps {
+ sh 'make'
+ }
+ }
+ stage('make dist') {
+ steps {
+ sh 'make dist'
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
More information about the rs-commit
mailing list