Files
Test/.drone.yml
Chatchai J 06c4b5838a
Some checks failed
continuous-integration/drone/push Build encountered an error
update drone, so it should not failed
2022-12-28 07:35:05 +07:00

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
...