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 64e4021 commit a80c482Copy full SHA for a80c482
Jenkinsfile
@@ -0,0 +1,16 @@
1
+node('docker && imgtec') {
2
+ def docker_image
3
+ docker_image = docker.image "imgtec/creator-builder:latest" // TODO for now using the creator one
4
+ docker_image.inside {
5
+ stage('Prepare') {
6
+ checkout scm
7
+ }
8
+ stage('Build') {
9
+ sh 'make CROSS_COMPILE=/opt/toolchains/mips-img-linux-gnu/2016.05-03/bin/mips-img-linux-gnu- pistachio_marduk_defconfig'
10
+ sh 'make CROSS_COMPILE=/opt/toolchains/mips-img-linux-gnu/2016.05-03/bin/mips-img-linux-gnu-'
11
12
+ stage('Upload') {
13
+ archiveArtifacts 'u-boot-pistachio-nor.img'
14
15
16
+}
0 commit comments