lokinet/.gitlab-ci.yml

21 lines
298 B
YAML
Raw Normal View History

2018-08-23 13:30:29 +00:00
variables:
GIT_STRATEGY: fetch
stages:
- build
- test
build:linux:
image: alpine:latest
tags:
- linux
stage: build
before_script:
2018-09-19 15:26:30 +00:00
- apk add --update g++ make cmake linux-headers libsodium-dev ninja libcap-dev
2018-08-23 13:30:29 +00:00
script:
2018-09-10 11:23:05 +00:00
- make
2018-08-23 13:30:29 +00:00
artifacts:
paths:
- "lokinet"