10 lines
163 B
YAML
10 lines
163 B
YAML
|
image: gcc:latest
|
||
|
|
||
|
stages:
|
||
|
- build
|
||
|
|
||
|
build:
|
||
|
stage: build
|
||
|
script:
|
||
|
- mkdir -p build bin debug && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. && make -j
|