Rename stages.
This commit is contained in:
parent
4b92fe3765
commit
b13d37b9d8
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue