aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 937cb5be415cac69d7de703bed30468e4d36f351 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
image: debian:bullseye

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