Increase Jenkins pipeline verbosity

This commit is contained in:
zypherift
2026-04-05 02:09:08 +02:00
parent e5e0386777
commit 071ab301bb

6
Jenkinsfile vendored
View File

@@ -8,17 +8,17 @@ pipeline {
} }
stage('Flutter Doctor') { stage('Flutter Doctor') {
steps { steps {
sh 'flutter doctor' sh 'flutter doctor -v'
} }
} }
stage('Dependencies') { stage('Dependencies') {
steps { steps {
sh 'cd refilc && flutter pub get' sh 'cd refilc && flutter pub get -v'
} }
} }
stage('Build') { stage('Build') {
steps { steps {
sh 'cd refilc && flutter build apk --release' sh 'cd refilc && flutter build apk --release -v'
} }
} }
stage('Archive') { stage('Archive') {