17 lines
157 B
YAML
17 lines
157 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: gcc
|
|
commands:
|
|
- make
|
|
|
|
- name: run
|
|
image: bash
|
|
commands:
|
|
- ./hello
|
|
...
|