We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cef66f commit 5ab0d9eCopy full SHA for 5ab0d9e
Jenkinsfile
@@ -3,14 +3,16 @@ node('docker && imgtec') {
3
docker_image = docker.image "imgtec/creator-builder:latest" // TODO for now using the creator one
4
docker_image.inside {
5
stage('Prepare') {
6
+ deleteDir() // clean up the workspace to save space
7
checkout scm
8
}
9
stage('Build') {
10
sh 'make CROSS_COMPILE=/opt/toolchains/mips-img-linux-gnu/2016.05-03/bin/mips-img-linux-gnu- pistachio_marduk_defconfig'
11
sh 'make CROSS_COMPILE=/opt/toolchains/mips-img-linux-gnu/2016.05-03/bin/mips-img-linux-gnu-'
12
13
stage('Upload') {
- archiveArtifacts 'u-boot-pistachio-nor.img'
14
+ archiveArtifacts 'u-boot-pistachio*.img'
15
16
17
18
0 commit comments