dashboard-v2/.circleci/config.yml
2020-07-26 17:18:19 +01:00

22 lines
474 B
YAML

version: 2
jobs:
build:
docker:
- image: golang:1.14-alpine
working_directory: /go/src/github.com/TicketsBot/GoPanel
steps:
- checkout
- restore_cache:
keys:
- v1-pkg-cache
- run:
name: Install czlib & GCC
command: apk add zlib-dev gcc musl-dev
- run: go build cmd/panel/main.go
- store_artifacts:
path: /go/src/github.com/TicketsBot/GoPanel/main