forked from testg/test_repo
Compare commits
3 Commits
a101211279
...
a101211279
Author | SHA1 | Date | |
---|---|---|---|
b61f957abc | |||
767ca5dadd | |||
1a83f2ed5d |
34
.drone.yml
Normal file
34
.drone.yml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
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
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: promote_test
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- promote
|
||||||
|
target:
|
||||||
|
- production
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: test
|
||||||
|
image: gcc
|
||||||
|
commands:
|
||||||
|
- echo "start test"
|
23
main.c
Normal file
23
main.c
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int add(int a, int b);
|
||||||
|
|
||||||
|
int main(int argc, char** argv)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
printf("hello word!\n");
|
||||||
|
if (argc > 1)
|
||||||
|
{
|
||||||
|
for(i = 0; i < argc; i++)
|
||||||
|
{
|
||||||
|
printf("argv[%2d] = %s\n",i,argv[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
printf("add 1 + 2 = %d \n", add(1,2));
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int add(int a, int b)
|
||||||
|
{
|
||||||
|
return a + b;
|
||||||
|
}
|
Reference in New Issue
Block a user