Files
Test/.drone.yml
Chatchai J b2d8a3ed41
Some checks failed
continuous-integration/drone/push Build is failing
drone test #2
2022-12-28 06:50:34 +07:00

17 lines
157 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: gcc
commands:
- make
- name: run
image: bash
commands:
- ./hello
...