lokinet/.gitlab-ci.yml

30 lines
456 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:
- apk add --update g++ make cmake linux-headers libcap-dev
2018-08-23 13:30:29 +00:00
script:
- make
2018-08-23 13:30:29 +00:00
artifacts:
paths:
- "lokinet"
2018-11-09 13:26:50 +00:00
#build:windows:
# tags:
# - windows
# stage: build
# script:
# - make STATIC_LINK=ON AVX2=OFF JSONRPC=OFF CC=gcc CXX=g++
# artifacts:
# paths:
# - "lokinet.exe"