Jenkinsfile: Remove unnecessary cleanall

The previous script was always cleaning the rootfs which is not
required. It build automatically be rebuilt if something has changed or
kept as is if nothing has changed.
This commit is contained in:
Alexandre Bard 2020-09-11 15:03:49 +02:00
parent 4290c87c44
commit ce438ee123
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -120,7 +120,7 @@ def build(env_in, image_type_in, single_fitImage) {
if (single_fitImage) {
sh "bash -c '. ./env.image${env} && bitbake -k virtual/kernel'"
} else {
sh "bash -c '. ./env.image${env} && bitbake -fc cleanall netmodule-linux-image${image_type} && bitbake -k netmodule-linux-image${image_type}'"
sh "bash -c '. ./env.image${env} && bitbake -k netmodule-linux-image${image_type}'"
}
}