multiple jenkins files for build of yocto images
Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- pipeline {
- /* agent any */
- agent {label 'master'}
- stages {
- stage('clone poky sumo') {
- steps {
- sh '''#!/bin/bash
- set -x
- rm -fr *
- git clone git://git.yoctoproject.org/poky
- cd poky
- git checkout -b sumo origin/sumo
- '''
- }
- }
- stage('fetch sources for build') {
- steps {
- sh '''#!/bin/bash
- set -x
- cd poky
- source oe-init-build-env
- # ln -s /media/data/.yoctoshare/downloads ./downloads
- bitbake core-image-minimal --runall=fetch
- '''
- }
- }
- stage('build poky image') {
- steps {
- sh '''#!/bin/bash
- set -x
- cd poky
- source oe-init-build-env
- bitbake core-image-minimal
- '''
- }
- }
- }
- }
|