Compare commits
1 Commits
3daa2174ce
...
54ebebf96c
Author | SHA1 | Date |
---|---|---|
|
54ebebf96c |
|
@ -6,45 +6,43 @@ pipeline {
|
|||
}
|
||||
}
|
||||
|
||||
pipeline {
|
||||
stages {
|
||||
stage('Prepare') {
|
||||
checkout poll: false, scm: [
|
||||
$class: 'GitSCM',
|
||||
branches: [[name: '2022.02.x']],
|
||||
doGenerateSubmoduleConfigurations: false,
|
||||
userRemoteConfigs: [[url: 'git://git.buildroot.net/buildroot']],
|
||||
extensions: [
|
||||
[
|
||||
$class: 'RelativeTargetDirectory',
|
||||
relativeTargetDir: 'buildroot',
|
||||
],
|
||||
stages {
|
||||
stage('Prepare') {
|
||||
checkout poll: false, scm: [
|
||||
$class: 'GitSCM',
|
||||
branches: [[name: '2022.02.x']],
|
||||
doGenerateSubmoduleConfigurations: false,
|
||||
userRemoteConfigs: [[url: 'git://git.buildroot.net/buildroot']],
|
||||
extensions: [
|
||||
[
|
||||
$class: 'RelativeTargetDirectory',
|
||||
relativeTargetDir: 'buildroot',
|
||||
],
|
||||
]
|
||||
],
|
||||
]
|
||||
steps {
|
||||
sh '. ci/prepare.sh'
|
||||
}
|
||||
}
|
||||
|
||||
parallel {
|
||||
stage('Build Initramfs') {
|
||||
steps {
|
||||
sh '. ci/prepare.sh'
|
||||
sh '. ci/build-initramfs.sh'
|
||||
}
|
||||
}
|
||||
|
||||
parallel {
|
||||
stage('Build Initramfs') {
|
||||
steps {
|
||||
sh '. ci/build-initramfs.sh'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Build Rootfs') {
|
||||
steps {
|
||||
sh '. ci/build-rootfs.sh'
|
||||
}
|
||||
stage('Build Rootfs') {
|
||||
steps {
|
||||
sh '. ci/build-rootfs.sh'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Publish') {
|
||||
steps {
|
||||
sshagent(['jenkins-pxe']) {
|
||||
sh '. ci/publish.sh'
|
||||
}
|
||||
stage('Publish') {
|
||||
steps {
|
||||
sshagent(['jenkins-pxe']) {
|
||||
sh '. ci/publish.sh'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in New Issue