Rename stages.

This commit is contained in:
Robert Jacob 2017-07-08 19:45:12 +02:00
parent 4b92fe3765
commit b13d37b9d8
1 changed files with 4 additions and 10 deletions

14
Jenkinsfile vendored
View File

@ -1,13 +1,7 @@
pipeline {
agent any
stages {
stage('checkout tools') {
steps {
checkout scm
}
}
stage('checkout') {
stage('Checkout sources') {
steps {
checkout([
$class: 'GitSCM',
@ -36,7 +30,7 @@ pipeline {
}
}
stage('feeds') {
stage('Update feeds') {
steps {
dir("source") {
sh "./scripts/feeds update -a"
@ -46,7 +40,7 @@ pipeline {
}
stage('patches') {
stage('Apply patches') {
steps {
dir("source") {
sh "cp -rf firmware/files firmware/package ."
@ -58,7 +52,7 @@ pipeline {
}
}
stage('build') {
stage('Build images') {
steps {
dir("source") {
sh "../build.sh"