Compare commits

..

1 Commits

Author SHA1 Message Date
Thomas Klaehn
54c0f22b1d linux-blackfinn: Add Jenkinsfile
Signed-off-by: Thomas Klaehn <thomas.klaehn@u-blox.com>
2019-03-08 10:29:58 +01:00

4
Jenkinsfile vendored
View File

@ -12,6 +12,7 @@ pipeline {
repo sync repo sync
""" """
stage('Fetch') { stage('Fetch') {
steps {
script { script {
if(params.MACHINE == 'beaglebone-yocto') { if(params.MACHINE == 'beaglebone-yocto') {
sh """#!/bin/bash sh """#!/bin/bash
@ -27,7 +28,9 @@ pipeline {
} }
} }
} }
}
stage('Build') { stage('Build') {
steps {
script { script {
if(params.MACHINE == 'beaglebone-yocto') { if(params.MACHINE == 'beaglebone-yocto') {
sh """#!/bin/bash sh """#!/bin/bash
@ -52,6 +55,7 @@ pipeline {
} }
} }
} }
}
stage('Deploy downloads') { stage('Deploy downloads') {
agent { agent {
label 'deploy' label 'deploy'