Skip to content

Commit 109fe0e

Browse files
authored
Update Jenkinsfile
1 parent b2c6e09 commit 109fe0e

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
@@ -9,11 +9,22 @@ pipeline{
99
bat "mvn clean package"
1010
}
1111
}
12+
stage("test"){
13+
parallel{
14+
steps{
15+
echo "test 1"
16+
}
17+
steps{
18+
"test 2"
19+
}
20+
}
21+
}
1222
stage("run"){
1323
steps{
1424
bat "java -cp target/my-app-1.0-SNAPSHOT.jar com.mycompany.app.App"
1525
}
1626
}
27+
1728
}
1829
post {
1930
success{

0 commit comments

Comments
 (0)