14 lines
161 B
YAML
14 lines
161 B
YAML
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: archlinux_build
|
||
|
pull: if-not-exists
|
||
|
commands:
|
||
|
- cmake .
|
||
|
- make -j
|
||
|
|
||
|
|