diff --git a/Jenkinsfile b/Jenkinsfile index 113eef9..8bf18d8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -54,11 +54,11 @@ pipeline { } stage('Flutter clean') { - when { - expression { - params.CLEAN_BUILD == true - } - } + // when { + // expression { + // params.CLEAN_BUILD == true + // } + // } steps { sh 'flutter clean' } @@ -169,12 +169,12 @@ pipeline { // } stage('Build Web') { - when { - expression { - def buildType = params.BUILD_TYPE.toLowerCase() - buildType == 'all' || buildType == 'web' - } - } + // when { + // expression { + // def buildType = params.BUILD_TYPE.toLowerCase() + // buildType == 'all' || buildType == 'web' + // } + // } steps { script { currentBuild.displayName = "#${currentBuild.number} - Web"