File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,25 @@ node('docker && imgtec') {
33 docker_image = docker. image " imgtec/creator-builder:latest" // TODO for now using the creator one
44 docker_image. inside {
55 stage(' Prepare' ) {
6- checkout scm
6+ checkout([$class : ' GitSCM' ,
7+ userRemoteConfigs : scm. userRemoteConfigs,
8+ branches : scm. branches,
9+ doGenerateSubmoduleConfigurations : scm. doGenerateSubmoduleConfigurations,
10+ submoduleCfg : scm. submoduleCfg,
11+ browser : scm. browser,
12+ gitTool : scm. gitTool,
13+ extensions : scm. extensions + [
14+ [$class : ' CleanCheckout' ],
15+ [$class : ' PruneStaleBranch' ],
16+ ],
17+ ])
718 }
819 stage(' Build' ) {
920 sh ' make CROSS_COMPILE=/opt/toolchains/mips-img-linux-gnu/2016.05-03/bin/mips-img-linux-gnu- pistachio_marduk_defconfig'
1021 sh ' make CROSS_COMPILE=/opt/toolchains/mips-img-linux-gnu/2016.05-03/bin/mips-img-linux-gnu-'
1122 }
1223 stage(' Upload' ) {
13- archiveArtifacts ' u-boot-pistachio-nor .img'
24+ archiveArtifacts ' u-boot-pistachio* .img'
1425 }
1526 }
1627}
You can’t perform that action at this time.
0 commit comments