summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 1b50f86622ee5e897b06cbb500200ecd2ddb3c9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
image: golang:alpine

stages:
  - build

go_build:
  stage: build
  variables:
    GOOS: linux
    GOARCH: amd64
    CGO_ENABLED: 0
  before_script:
    - apk add --no-cache git
  script:
    - go build -o stanuki cmd/stanuki/main.go