init(git): 🎉 初始化git子仓库

This commit is contained in:
李东云
2022-04-24 14:58:52 +08:00
commit d4680e40fe
3 changed files with 59 additions and 0 deletions

15
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,15 @@
pipeline {
stages {
stage('Build 8.0-swoole') {
agent {
docker { image 'plugins/docker' }
}
steps {
sh 'docker login harbor.luxcreo.cn -u '
sh 'docker build -t harbor.luxcreo.cn/library/hyperf:8.0-swoole -f swoole/8.0/Dockerfile .'
sh 'docker push harbor.luxcreo.cn/library/hyperf:8.0-swoole'
}
}
}
}