File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,16 @@ 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
+ deleteDir() // clean up the workspace to save space
6
7
checkout scm
7
8
}
8
9
stage(' Build' ) {
9
10
sh ' make CROSS_COMPILE=/opt/toolchains/mips-img-linux-gnu/2016.05-03/bin/mips-img-linux-gnu- pistachio_marduk_defconfig'
10
11
sh ' make CROSS_COMPILE=/opt/toolchains/mips-img-linux-gnu/2016.05-03/bin/mips-img-linux-gnu-'
11
12
}
12
13
stage(' Upload' ) {
13
- archiveArtifacts ' u-boot-pistachio-nor.img'
14
+ archiveArtifacts ' u-boot-pistachio*.img'
15
+ deleteDir() // clean up the workspace to save space
14
16
}
15
17
}
16
18
}
Original file line number Diff line number Diff line change 1
1
VERSION = 2015
2
2
PATCHLEVEL = 10
3
3
SUBLEVEL =
4
- EXTRAVERSION =
4
+ EXTRAVERSION = -v1.0.4
5
5
NAME =
6
6
7
7
# *DOCUMENTATION*
You can’t perform that action at this time.
0 commit comments