我有一个.gitlab-ci.yml文件,该文件稍后将golang图像和MySql图像用作服务...
gilab-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应用程序中也有一个测试,该测试在我的dev机器上可以正常运行,正如您将在上面看到的,我已经在gitlab-ci.yml文件中设置了环境变量(与我的开发环境相匹配。
- env =“ root:rootroot @ tcp(localhost:3306)/ TESTDB”
但是当我运行管道时,出现以下错误...
$ env =“ root:rootroot @ tcp(localhost:3306)/ TESTDB” $ go test。/ ...?
alltools [没有测试文件] alltools / BBData [无测试文件]拨号 tcp 127.0.0.1:3306:getsockopt:连接被拒绝
我需要更改gitlab-ci.yml文件中的环境变量吗?
答案 0 :(得分:2)
正如Seddik已经指出的那样,localhost不是MySQL服务器将监听的主机;它会以名称mysql
可用。
此外,命令env="root:rootroot@tcp(localhost:3306)/TESTDB"
在shell中设置一个局部变量。它不会影响环境变量。
要设置环境变量
export
局部变量variables
字典go test
命令设置变量:variables:
# Set your variable here for all jobs ...
env: root:rootroot@tcp(mysql:3306)/TESTDB
before_script:
# ... or export it here ...
- export env=root:rootroot@tcp(mysql:3306)/TESTDB
test:
services:
- mysql:5.7
variables:
# ... or set it here for this job only ...
env: root:rootroot@tcp(mysql:3306)/TESTDB
script:
# ... or set it here for the go command only
- env=root:rootroot@tcp(mysql:3306)/TESTDB go test ./...
答案 1 :(得分:1)
您应该使用:
mysql
代替:
本地主机