All checks were successful
continuous-integration/drone/push Build is passing
Add adder Add main.c Signed-off-by: a1012112796 <1012112796@qq.com> Reviewed-on: https://www.zhao1012112796.top:3000/testg/test_repo/pulls/1
19 lines
249 B
YAML
19 lines
249 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: build_linux_test
|
|
|
|
trigger:
|
|
event:
|
|
- pull_request
|
|
- push
|
|
|
|
steps:
|
|
- name: build_test
|
|
image: gcc
|
|
commands:
|
|
- echo "start test"
|
|
- gcc main.c -o test
|
|
- ./test
|
|
|