gomuks/.gitlab-ci.yml
2020-04-28 01:08:49 +03:00

17 lines
267 B
YAML

image: debian:bullseye
build:
stage: build
cache:
paths:
- .cache
before_script:
- apt-get install -y git libolm-dev
- mkdir -p .cache
- export GOPATH="$CI_PROJECT_DIR/.cache"
script:
- go build -o gomuks
artifacts:
paths:
- gomuks