Compare commits
1 Commits
5e51a6b1f7
...
54c0f22b1d
Author | SHA1 | Date | |
---|---|---|---|
|
54c0f22b1d |
24
Jenkinsfile
vendored
24
Jenkinsfile
vendored
@ -12,16 +12,39 @@ pipeline {
|
||||
repo sync
|
||||
"""
|
||||
stage('Fetch') {
|
||||
steps {
|
||||
script {
|
||||
if(params.MACHINE == 'beaglebone-yocto') {
|
||||
sh """#!/bin/bash
|
||||
source bbb-init-build-env
|
||||
bitbake console-image --runall=fetch
|
||||
"""
|
||||
}
|
||||
else if(params.MACHINE == 'raspberrypi3-64') {
|
||||
sh """#!/bin/bash
|
||||
source rpi-init-build-env
|
||||
bitbake console-image --runall=fetch
|
||||
"""
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
steps {
|
||||
script {
|
||||
if(params.MACHINE == 'beaglebone-yocto') {
|
||||
sh """#!/bin/bash
|
||||
source bbb-init-build-env
|
||||
bitbake console-image
|
||||
"""
|
||||
}
|
||||
else if(params.MACHINE == 'raspberrypi3-64') {
|
||||
sh """#!/bin/bash
|
||||
source rpi-init-build-env
|
||||
bitbake console-image
|
||||
"""
|
||||
}
|
||||
}
|
||||
stash name: "download_bz2", includes: "**/build/downloads/*.tar.bz2", excludes: "**/build/downloads/*.tar.bz2.*"
|
||||
stash name: "download_gz", includes: "**/build/downloads/*.tar.gz", excludes: "**/build/downloads/*.tar.gz.*"
|
||||
stash name: "download_xz", includes: "**/build/downloads/*.tar.xz", excludes: "**/build/downloads/*.tar.xz.*"
|
||||
@ -32,6 +55,7 @@ pipeline {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Deploy downloads') {
|
||||
agent {
|
||||
label 'deploy'
|
||||
|
Loading…
Reference in New Issue
Block a user