我有一个 .gitlab-ci.yml 文件,稍后使用 golang 图像和 MySql 图像作为服务......
吉拉布-ci.yml...
stages:
- test
- build
- art
image: golang:1.9.2
variables:
BIN_NAME: alltools
ARTIFACTS_DIR: artifacts
GO_PROJECT: alltools
GOPATH: /go
before_script:
- mkdir -p ${GOPATH}/src/${GO_PROJECT}
- mkdir -p ${CI_PROJECT_DIR}/${ARTIFACTS_DIR}
- go get -u github.com/golang/dep/cmd/dep
- go get -u github.com/fatih/color
- go get -u github.com/go-sql-driver/mysql
- cp -r ${CI_PROJECT_DIR}/* ${GOPATH}/src/${GO_PROJECT}/
- cd ${GOPATH}/src/${GO_PROJECT}
- env="root:rootroot@tcp(localhost:3306)/TESTDB"
test:
stage: test
services:
- mysql:5.7
variables:
# Configure mysql environment variables (https://hub.docker.com/_/mysql/)
# MYSQL_DATABASE: mydb
MYSQL_ROOT_PASSWORD: rootroot
script:
# Run all tests
go test ./...
build:
stage: build
script:
# Compile and name the binary as `hello`
- go build -o alltools
- pwd
- ls -l alltools
# Execute the binary
- ./alltools
# Move to gitlab build directory
- mv ./alltools ${CI_PROJECT_DIR}
artifacts:
paths:
- ./alltools
我还在我的 go 应用程序中进行了一个测试,该测试在我的开发机器上运行良好,正如您在上面看到的,我在 gitlab-ci.yml 文件中设置了环境变量(这与我的开发环境匹配)。
env="root:rootroot@tcp(localhost:3306)/TESTDB"
但是当我运行管道时出现以下错误......
$ env="root:rootroot@tcp(localhost:3306)/TESTDB" $ 去测试 ./... ?
alltools [没有测试文件] ?alltools/BBData [无测试文件] 拨打 tcp 127.0.0.1:3306: getsockopt: 连接被拒绝
我需要更改 gitlab-ci.yml 文件中的环境变量吗?
白衣染霜花
收到一只叮咚
相关分类