aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 59fd29a2a28141912c346f140f7d5190f9ad9fd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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