[rt-commit] r176 - /redwax-tool/trunk/Jenkinsfile
rt-commit at redwax.eu
rt-commit at redwax.eu
Tue Mar 5 00:01:54 CET 2024
Author: minfrin at redwax.eu
Date: Tue Mar 5 00:01:53 2024
New Revision: 176
Log:
Sequential inside paralell.
Modified:
redwax-tool/trunk/Jenkinsfile
Modified: redwax-tool/trunk/Jenkinsfile
==============================================================================
--- redwax-tool/trunk/Jenkinsfile (original)
+++ redwax-tool/trunk/Jenkinsfile Tue Mar 5 00:01:53 2024
@@ -5,10 +5,22 @@
parallel {
stage('MacOS') {
agent { label 'macos' }
- steps {
- sh 'autoreconf --force --install'
- sh './configure --with-openssl --with-nss --with-p11-kit --with-libical --with-keychain --with-ldns --with-unbound'
- sh 'make'
+ stages {
+ stage('autoreconf') {
+ steps {
+ sh 'autoreconf --force --install'
+ }
+ }
+ stage('configure') {
+ steps {
+ sh './configure --with-openssl --with-nss --with-p11-kit --with-libical --with-keychain --with-ldns --with-unbound'
+ }
+ }
+ stage('make') {
+ steps {
+ sh 'make'
+ }
+ }
}
}
stage('RHEL9') {
More information about the rt-commit
mailing list