1 Commits

Author SHA1 Message Date
3bb203343c 添加 '中国' 2020-06-18 15:41:24 +08:00
3 changed files with 1 additions and 41 deletions

View File

@@ -1,18 +0,0 @@
---
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

23
main.c
View File

@@ -1,23 +0,0 @@
#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;
}

1
中国 Normal file
View File

@@ -0,0 +1 @@
中国