15 lines
338 B
YAML
15 lines
338 B
YAML
image: ubuntu:18.04
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- apt-get update -qq && apt-get install -y -qq git make clang
|
|
- CC=clang CXX=clang++ make
|
|
artifacts:
|
|
paths:
|
|
- tv_rename
|
|
# depending on your build setup it's most likely a good idea to cache outputs to reduce the build time
|
|
# cache:
|
|
# paths:
|
|
# - "*.o"
|