jenkins: fix syntax

This commit is contained in:
2025-10-26 08:45:25 +01:00
parent 321e79b9a1
commit a5c70c1c43

3
Jenkinsfile vendored
View File

@@ -14,6 +14,7 @@ pipeline {
} }
} }
stage('Flutter builds') { stage('Flutter builds') {
steps {
sh 'devenv shell dart run pdfrx:remove_wasm_modules --revert' // Make sure WASM is put in output sh 'devenv shell dart run pdfrx:remove_wasm_modules --revert' // Make sure WASM is put in output
sh 'devenv shell flutter build web --release' sh 'devenv shell flutter build web --release'
@@ -22,6 +23,7 @@ pipeline {
sh 'devenv shell dart run pdfrx:remove_wasm_modules --revert' // Reset again, just to be sure sh 'devenv shell dart run pdfrx:remove_wasm_modules --revert' // Reset again, just to be sure
} }
}
stage('Parallel Deploy') { stage('Parallel Deploy') {
parallel { parallel {
stage('Web') { stage('Web') {
@@ -80,7 +82,6 @@ pipeline {
} }
} }
} }
}
post { post {
always { always {
step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: emailextrecipients([developers(), requestor()])]) step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: emailextrecipients([developers(), requestor()])])