Add Gitlab build file

This commit is contained in:
kaiyou 2020-05-19 10:20:12 +02:00
parent ddef84c573
commit 0ab363f218
1 changed files with 16 additions and 0 deletions

16
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,16 @@
image: golang:1.13.9-alpine
stages:
- build
build:
stage: build
script:
- apk add --no-cache make
- make release GOARCHES="amd64 arm arm64"
only:
- branches
artifacts:
paths:
- wesher-*
expire_in: 8 weeks