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