aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 65864a205a2b491aaa10d6e50e7d46431ff6e1de (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 golang-go
  - mkdir -p .cache
  - export GOPATH="$CI_PROJECT_DIR/.cache"
  script:
  - go build -o gomuks
  artifacts:
    paths:
    - gomuks