11 lines
157 B
YAML
11 lines
157 B
YAML
stages:
|
|
- build
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- git submodule update --init --recursive
|
|
- cmake .
|
|
- make -j$(nproc)
|
|
tags:
|
|
- builder
|