-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
84 lines (75 loc) · 1.89 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# This file is a template, and might need editing before it works on your project.
image: golang:latest
variables:
# Please edit to your GitLab project
REPO_NAME: github.com/ids/clairctl
# 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.
stages:
- build
- publish
- dockerize
compile:
stage: build
tags:
- docker
artifacts:
untracked: true
expire_in: 1 hour
script:
- mkdir -p $GOPATH/src/$(dirname $REPO_NAME)
- ln -svf $CI_PROJECT_DIR $GOPATH/src/$REPO_NAME
- cd $GOPATH/src/$REPO_NAME
- curl https://glide.sh/get | sh
- glide install -v
- go get -u github.com/jteeuwen/go-bindata/...
- go generate ./clair
- go build -race -ldflags "-extldflags '-static'" -o $CI_PROJECT_DIR/clairctl
create_binaries:
stage: publish
tags:
- docker
artifacts:
paths:
- client-bins/clairctl-darwin-amd64
- client-bins/clairctl-linux-amd64
expire_in: 2 days
script:
- bash $CI_PROJECT_DIR/ci-deploy.sh
only:
- develop
- master
#
# The DinD route works well enough, but there is no means
# to allow something like clairctl to host an http server
# for exchange with the Clair API, so moved to shell
#
#dockerize:
# image: gitlab/dind
# stage: deploy
# tags:
# - docker
# script:
# - bash $CI_PROJECT_DIR/ci-dockerize.sh
# only:
# - develop
# - master
build_docker:
stage: dockerize
dependencies:
- compile
tags:
- shell
script:
- bash $CI_PROJECT_DIR/ci-shell-dockerize.sh
artifacts:
paths:
- ./reports
expire_in: 1 week
only:
- develop
- master