LO41/.gitlab-ci.yml

8 lines
182 B
YAML

image: ubuntu:bionic
build:
stage: build
before_script:
- apt update && apt -y install make cmake gcc
script:
- mkdir cmake-build && cd cmake-build && cmake .. && make