Skip to content

Commit b4151da

Browse files
committed
update
1 parent 72e8721 commit b4151da

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

jenkinsfile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
pipeline {
22
agent any
3-
43
stages {
54
stage('Build') {
65
steps {
7-
echo 'Building..'
8-
sh"""
9-
ls
10-
"""
6+
echo 'Building...'
7+
}
8+
}
9+
stage('Test') {
10+
steps {
11+
echo 'Testing...'
1112
}
1213
}
1314
stage('Deploy') {
1415
steps {
15-
echo 'Deploying....'
16+
echo 'Deploying...'
1617
}
1718
}
1819
}

0 commit comments

Comments
 (0)