1 Star 0 Fork 0

飞哥/gindemo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Jenkinsfile-ssh 1.67 KB
一键复制 编辑 原始数据 按行查看 历史
飞哥 提交于 2024-07-26 00:08 . 项目初始化
pipeline {
agent any
tools {
go 'go'
}
stages {
stage('开始下载代码') {
steps {
git credentialsId: 'f3c6f5d9-b51a-4959-866e-43fcae76c732', url: 'https://gitee.com/kekesam/gindemo.git'
}
}
stage('配置go的环境变量') {
steps {
echo '第一步:配置go的环境变量'
sh '''export GOROOT=/usr/local/go
export PATH=$PATH:$GOROOT/bin'''
echo '第二步:开启go module'
sh '''go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.io'''
}
}
stage('开始打包和运行') {
steps {
sh 'go build -o build/gindemo main.go'
}
}
stage('开始复制资源文件') {
steps {
sh '''mkdir -p build/resources
cp resources/application.yaml build/resources/application.yaml
cp start.sh build/start.sh'''
}
}
stage('开始ssh跨服务远程打包和部署') {
steps {
sshPublisher(publishers: [sshPublisherDesc(configName: '47.115.230.36', transfers: [sshTransfer(cleanRemote: false, excludes: '', execCommand: 'chmod +x /data/gindemo/start.sh && cd /data/gindemo && ./start.sh', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaultExcludes: false, patternSeparator: '[, ]+', remoteDirectory: 'gindemo', remoteDirectorySDF: false, removePrefix: 'build', sourceFiles: 'build/**')], usePromotionTimestamp: false, useWorkspaceInPromotion: false, verbose: false)])
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kekesam/gindemo.git
git@gitee.com:kekesam/gindemo.git
kekesam
gindemo
gindemo
master

搜索帮助