Mise à jour de 'Jenkinsfile'

This commit is contained in:
dany 2022-08-04 00:16:01 +02:00
parent e15cb912c0
commit 7f29cfd35b

3
Jenkinsfile vendored
View File

@ -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
'''
}