10 lines
206 B
YAML
10 lines
206 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
steps:
|
|
- name: build
|
|
image: xwtkdym/ubuntu:ci
|
|
commands:
|
|
- cmake . -Bbuild
|
|
- cmake --build build --target
|
|
- cmake --build build --install |