mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
21 lines
313 B
YAML
21 lines
313 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 automake libtool autoconf linux-headers libsodium
|
|
script:
|
|
- make clean test
|
|
artifacts:
|
|
paths:
|
|
- "lokinet"
|
|
|