13 lines
273 B
YAML
13 lines
273 B
YAML
kind: pipeline
|
|
name: hello-world
|
|
type: docker
|
|
|
|
steps:
|
|
- name: run make compile
|
|
description: Check if the code is compiling
|
|
image: alpine
|
|
command: ["/bin/sh", "-c", "make compile"]
|
|
artifacts:
|
|
- name: compiled
|
|
path: randMus
|
|
type: file |