From 7f29cfd35b0ce9a0886f4a428747f0a181043b54 Mon Sep 17 00:00:00 2001 From: dany Date: Thu, 4 Aug 2022 00:16:01 +0200 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'Jenkinsfile'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 87ca8ef..db537ad 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline{ // Enable timestamps in build log console timestamps() // Maximum time to run the whole pipeline before canceling it - timeout(time: 5, unit: 'HOURS') + timeout(time: 10, unit: 'HOURS') // Use Jenkins ANSI Color Plugin for log console ansiColor('xterm') // Limit build concurrency to 1 per branch @@ -35,6 +35,7 @@ pipeline{ cd poky source ./oe-init-build-env ../build cat conf/*.conf + bitbake -c cleanall bitbake core-image-base bitbake core-image-base ''' }