mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
21 lines
298 B
YAML
21 lines
298 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 libcap-dev
|
|
script:
|
|
- make
|
|
artifacts:
|
|
paths:
|
|
- "lokinet"
|
|
|