From 12da4d7f97085a73730e66ff9d392df039e6a30c Mon Sep 17 00:00:00 2001 From: rezidir Date: Sun, 17 May 2026 11:16:01 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20Jenkinsfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3b858c4..51bc8cb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { options { buildDiscarder(logRotator(numToKeepStr: '10')) disableConcurrentBuilds() - timeout(time: 60, unit: 'MINUTES') + timeout(time: 1, unit: 'MINUTES') timestamps() } @@ -22,10 +22,6 @@ pipeline { booleanParam(name: 'CLEAN_BUILD', defaultValue: true, description: 'Run flutter clean before build') } - triggers { - cron('H 2 * * *') - } - stages { stage('Preparation') { steps { @@ -45,8 +41,8 @@ pipeline { stage('Environment Setup') { steps { script { - env.PATH = "/soft/flutter/bin/" - sh 'flutter doctor -v' + //env.PATH = "/soft/flutter/bin/" + sh '/soft/flutter/bin/flutter doctor -v' } } }