Compare commits
1 Commits
52bb621d1f
...
504c0978be
Author | SHA1 | Date | |
---|---|---|---|
|
504c0978be |
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -14,12 +14,14 @@ pipeline {
|
||||
stage('Fetch') {
|
||||
script {
|
||||
if(params.MACHINE == 'beaglebone-yocto') {
|
||||
echo "Fetch for beaglebone-yocto"
|
||||
sh """#!/bin/bash
|
||||
source bbb-init-build-env
|
||||
bitbake console-image --runall=fetch
|
||||
"""
|
||||
}
|
||||
else if(params.MACHINE == 'raspberrypi3-64') {
|
||||
echo "Fetch for raspberrypi3-64"
|
||||
sh """#!/bin/bash
|
||||
source rpi-init-build-env
|
||||
bitbake console-image --runall=fetch
|
||||
@ -30,12 +32,14 @@ pipeline {
|
||||
stage('Build') {
|
||||
script {
|
||||
if(params.MACHINE == 'beaglebone-yocto') {
|
||||
echo "Build for beaglebone-yocto"
|
||||
sh """#!/bin/bash
|
||||
source bbb-init-build-env
|
||||
bitbake console-image
|
||||
"""
|
||||
}
|
||||
else if(params.MACHINE == 'raspberrypi3-64') {
|
||||
echo "Build for raspberrypi3-64"
|
||||
sh """#!/bin/bash
|
||||
source rpi-init-build-env
|
||||
bitbake console-image
|
||||
|
Loading…
Reference in New Issue
Block a user