gomuks/.gitlab-ci.yml
2020-04-28 01:11:42 +03:00

18 lines
296 B
YAML

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