in Education by
Having a Golang project and Go workspace. I'm trying to run my test, but I'm having the following error : api/server.go:8:2: cannot find package "github.com/braintree/manners" in any of: /usr/local/go/src/github.com/braintree/manners (from $GOROOT) /go/src/github.com/braintree/manners (from $GOPATH) The problem comes from that when cloning the project it does it in this folder : Cloning into '/builds/compagny/project'... $GOPATH is /go and then inside that folder I should have something like : src/github.com/compagny/project I can : export GOPATH=$(pwd), but that doesn't help, Go expect a /src folder. But I do not have the control where gitlab-ci clone the project, do I? my gitlab-ci.yml : stages: - build - test build-my-project: image: golang:1.6 stage: build script: - go get -u github.com/Masterminds/glide - glide install - go build test-my-project: image: golang:1.6 stage: test script: - go get -u github.com/Masterminds/glide - glide install - go test -v ./... JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
Use the go wrapper provided in the image instead of glide. It will create a symlink in the proper location and then go get your dependencies. E.g. build-my-project: image: golang:1.6 stage: build script: - go-wrapper download - go build So the go wrapper knows the proper path of your project you will need to add it as an import comment in your main.go like so: package main // import "github.com/your/repo"

Related questions

0 votes
    I am trying to create a "feature branch" from golang. The following code is not working: reader : ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 9, 2022 in Education by JackTerrance
0 votes
    I am getting an 'access is denied' error when I attempt to delete a folder that is not empty. I used the ... that is not empty? Select the correct answer from above options...
asked Feb 2, 2022 in Education by JackTerrance
0 votes
    I have a self hosted gitlab on ubuntu machine. I configure a linux container for it to run runner. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 22, 2022 in Education by JackTerrance
0 votes
    I'm trying to verify when the OAB (Offline Address Book) root folder for a new OAB is created ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 25, 2022 in Education by JackTerrance
0 votes
    So I am trying to build a docker image with the Golang SDK, everything runs except the section in ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 17, 2022 in Education by JackTerrance
0 votes
    I use "github.com/streadway/amqp" for async processing requests via queue (RabbitMQ). And I use "github ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 9, 2022 in Education by JackTerrance
0 votes
    Will it be tedious to work with golang in machine learning? What could be a best start? Select the correct answer from above options...
asked Dec 1, 2021 in Education by JackTerrance
0 votes
    Find the wrong sentence. (1) Women do not have the right to vote in Saudi Arabia. (2) PRI (Institutional ... to vote in Fiji. Select the correct answer from above options...
asked Aug 3, 2022 in Education by JackTerrance
0 votes
    Inno Setup is a nice easy to use installer. It is rated high in this stackoverflow question. I have ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 21, 2022 in Education by JackTerrance
0 votes
    How to create empty tables with the same structure as another table?...
asked Dec 11, 2020 in Technology by JackTerrance
0 votes
    I'm relatively new to go, and I'm looking for a rough equivalent (library or implementation) of ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 13, 2022 in Education by JackTerrance
0 votes
    I'm relatively new to go, and I'm looking for a rough equivalent (library or implementation) of ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 12, 2022 in Education by JackTerrance
0 votes
    Can anyone tell me what do CI tools enable DevOps engineers to do? Select the correct answer from above options...
asked Jan 9, 2022 in Education by JackTerrance
0 votes
    The storage structure which do not survive system crashes are ______ (a) Volatile storage (b) Non- ... from Storage Structure in section Transactions of Database Management...
asked Oct 10, 2021 in Education by JackTerrance
0 votes
    Which is not a benefit of ci?...
asked Mar 7, 2021 in Technology by JackTerrance
...