加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.gitlab-ci.yml 532 Bytes
一键复制 编辑 原始数据 按行查看 历史
Valdas Petrulis 提交于 2020-12-21 18:50 . Migrate to Gitlab CI
stages:
- test
variables:
GO_PACKAGE: github.com/mysteriumnetwork/go-openvpn
GIT_CLONE_PATH: /home/gitlab-runner/go/src/$GO_PACKAGE
GOFLAGS: "-count=1" # Supersedes GOCACHE=off, see: https://github.com/golang/go/issues/29378#issuecomment-449383809
checks:
stage: test
tags: [go]
script: go run mage.go -v Check
test:
stage: test
tags: [go]
script: go run mage.go Test
check-binaries:
stage: test
tags: [go]
script: ./check-all.sh
go-report:
stage: test
tags: [go]
script: go run mage.go GoReport
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化