Some checks failed
continuous-integration/drone/push Build encountered an error
17 lines
175 B
YAML
17 lines
175 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: gcc
|
|
commands:
|
|
- make
|
|
|
|
- name: run
|
|
image: bash
|
|
commands:
|
|
- [ -f ./hello ] && ./hello
|
|
...
|