Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Chiefs
ChiefSend2
Commits
6b0c1330
Commit
6b0c1330
authored
Mar 28, 2021
by
Lukas Böhm
🎱
Browse files
Update .gitlab-ci.yml file
parent
8342e7ea
Pipeline
#59919
failed with stages
in 11 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
6b0c1330
...
...
@@ -11,38 +11,34 @@ cache:
variables
:
REPO_NAME
:
gitlab.cs.fau.de/chiefs/chiefsend2
# The problem is that to be able to use go get, one needs to put
# the repository in the $GOPATH. So for example if your gitlab domain
# is gitlab.com, and that your repository is namespace/project, and
# the default GOPATH being /go, then you'd need to have your
# repository in /go/src/gitlab.com/namespace/project
# Thus, making a symbolic link corrects this.
before_script
:
-
mkdir -p $GOPATH/src/$(dirname $REPO_NAME) $GOPATH/src/_/builds
-
cp -r $CI_PROJECT_DIR $GOPATH/src/$(dirname $REPO_NAME)
-
ln -s $GOPATH/src/$(dirname $REPO_NAME) $GOPATH/src/_/builds/$(dirname $REPO_NAME)
#
-
cd $GOPATH/src/$(dirname $REPO_NAME)
-
cp -r $CI_PROJECT_DIR .
#- ln -s . /go/src/_/builds/chiefs
#- ln -sf $CI_PROJECT_DIR .
-
mkdir -p $GOPATH/src/$(dirname $REPO_NAME)
-
ln -svf $CI_PROJECT_DIR $GOPATH/src/$REPO_NAME/api
-
cd $GOPATH/src/$REPO_NAME
-
find $GOPATH -maxdepth
3
-
find $CI_PROJECT_DIR -maxdepth
3
-
mkdir -p ./test/data
-
mkdir -p ./test/temp
-
export DATABASE_URI=sqlite:test.db
-
export MEDIA_DIR=./media/test
stages
:
-
test
-
build
test
:
format
:
stage
:
test
script
:
-
go mod init
-
go mod tidy
-
go fmt $(go list ./... | grep -v /vendor/)
-
go vet $(go list ./... | grep -v /vendor/)
-
go test $(go list ./... | grep -v /vendor/) -v -cover
build
:
compile
:
stage
:
build
script
:
-
go build -o $CI_PROJECT_DIR/mybinary
.
-
go build
-ldflags "-extldflags '-static'"
-o $CI_PROJECT_DIR/mybinary
artifacts
:
paths
:
-
mybinary
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment