gomuks/.gitlab-ci.yml

18 lines
296 B
YAML
Raw Normal View History

2020-04-28 00:08:49 +02:00
image: debian:bullseye
2019-07-25 22:53:45 +02:00
2020-04-28 00:08:49 +02:00
build:
2019-07-25 22:53:45 +02:00
stage: build
cache:
paths:
- .cache
2020-04-28 00:08:49 +02:00
before_script:
2020-04-28 00:10:12 +02:00
- apt-get update
2020-04-28 00:11:42 +02:00
- apt-get install -y git libolm-dev golang-go
2020-04-28 00:08:49 +02:00
- mkdir -p .cache
- export GOPATH="$CI_PROJECT_DIR/.cache"
2019-07-25 22:53:45 +02:00
script:
- go build -o gomuks
artifacts:
paths:
- gomuks