Skip to content

Commit 40edd7f

Browse files
committed
JustTry
1 parent c1eda1d commit 40edd7f

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

Jenkinsfile

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
pipeline {
2+
agent any
3+
stages {
4+
stage('Start') {
5+
steps {
6+
echo 'Hello'
7+
timestamps() {
8+
sleep(unit: 'MILLISECONDS', time: 10)
9+
}
10+
11+
}
12+
}
13+
14+
stage('deploy') {
15+
parallel {
16+
stage('deploy') {
17+
steps {
18+
echo 'deploy1'
19+
}
20+
}
21+
22+
stage('') {
23+
steps {
24+
echo 'hihi'
25+
}
26+
}
27+
28+
}
29+
}
30+
31+
}
32+
}

0 commit comments

Comments
 (0)