代码拉取完成,页面将自动刷新
pipeline {
agent any
tools {
go 'go'
}
environment {
srv_name='gindemo'
}
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/$srv_name main.go'
}
}
stage('开始复制资源文件') {
steps {
sh '''mkdir -p build/resources
cp resources/application.yaml build/resources/application.yaml
cp start-local.sh build/start-local.sh'''
}
}
stage('本地部署') {
steps {
sh '''
cd build
chmod +x start-local.sh
./start-local.sh
'''
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。