Skip to content

Commit fd3c70c

Browse files
committed
Try to fix build environment.
1 parent 9599a6b commit fd3c70c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Jenkinsfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ pipeline {
66
jdk "jdk-21"
77
}
88
stages {
9+
stage('Prepare') {
10+
steps {
11+
echo 'Preparing Project'
12+
checkout scmGit(
13+
branches: [[name: '${SOURCE_BRANCH}']],
14+
extensions: [
15+
cloneOptions(noTags:false)
16+
]
17+
)
18+
}
19+
}
920
stage('Clean') {
1021
steps {
1122
echo 'Cleaning Project'

0 commit comments

Comments
 (0)