16 lines
404 B
YAML
16 lines
404 B
YAML
image: ubuntu:18.04
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- apt-get update -qq && apt-get install -y -qq git make clang libc++-dev libc++1 libcurl4-openssl-dev libc++abi-dev
|
|
- CC=clang CXX=clang++ make
|
|
# depending on your build setup it's most likely a good idea to cache outputs to reduce the build time
|
|
# cache:
|
|
# paths:
|
|
# - "*.o"
|
|
test:
|
|
stage: test
|
|
script:
|
|
- ./test.sh
|