update:添加jenkins流水线

This commit is contained in:
bob
2021-05-25 09:08:30 +00:00
parent 103d0e220b
commit b8998ae27c

20
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,20 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'StartBuild'
sh '''echo \'start build\';
'''
}
}
stage('Test') {
steps {
echo 'Start Test'
sh 'echo \'dotnet test\';'
}
}
}
}