lokinet/.gitlab-ci.yml
2018-09-19 07:59:17 -04:00

21 lines
287 B
YAML

variables:
GIT_STRATEGY: fetch
stages:
- build
- test
build:linux:
image: alpine:latest
tags:
- linux
stage: build
before_script:
- apk add --update g++ make cmake linux-headers libsodium-dev ninja
script:
- make
artifacts:
paths:
- "lokinet"