Disabling cgo to not install gcc package in .gitlab-ci.yml configuration.
This commit is contained in:
parent
f272887895
commit
ac52da6ef3
|
@ -2,7 +2,7 @@ image: "golang:1-alpine"
|
||||||
|
|
||||||
build:
|
build:
|
||||||
script:
|
script:
|
||||||
- go build .
|
- CGO_ENABLED=0 go build .
|
||||||
- ./magnetico-go-migrator --help
|
- ./magnetico-go-migrator --help
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
|
|
Reference in a new issue