Compare commits
1 Commits
54ebebf96c
...
f168c0e561
Author | SHA1 | Date |
---|---|---|
|
f168c0e561 |
|
@ -8,20 +8,22 @@ pipeline {
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Prepare') {
|
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 {
|
steps {
|
||||||
sh '. ci/prepare.sh'
|
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'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in New Issue