File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,25 @@ node('docker && imgtec') {
3
3
docker_image = docker. image " imgtec/creator-builder:latest" // TODO for now using the creator one
4
4
docker_image. inside {
5
5
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
+ ])
7
18
}
8
19
stage(' Build' ) {
9
20
sh ' make CROSS_COMPILE=/opt/toolchains/mips-img-linux-gnu/2016.05-03/bin/mips-img-linux-gnu- pistachio_marduk_defconfig'
10
21
sh ' make CROSS_COMPILE=/opt/toolchains/mips-img-linux-gnu/2016.05-03/bin/mips-img-linux-gnu-'
11
22
}
12
23
stage(' Upload' ) {
13
- archiveArtifacts ' u-boot-pistachio-nor .img'
24
+ archiveArtifacts ' u-boot-pistachio* .img'
14
25
}
15
26
}
16
27
}
You can’t perform that action at this time.
0 commit comments