3 Commits

Author SHA1 Message Date
dd8b19f90e 更新 main.c
Signed-off-by: a1012112796 <1012112796@qq.com>
2023-06-02 10:02:44 +08:00
767ca5dadd test promote
Signed-off-by: a1012112796 <1012112796@qq.com>
2021-05-15 11:00:09 +08:00
1a83f2ed5d init pr (#1)
Add adder

Add main.c

Signed-off-by: a1012112796 <1012112796@qq.com>

Reviewed-on: https://www.zhao1012112796.top:3000/testg/test_repo/pulls/1
2020-05-16 14:48:55 +08:00
4 changed files with 63 additions and 11 deletions

34
.drone.yml Normal file
View 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"

View File

@@ -1,8 +0,0 @@
-----
name: "test"
about: "This template is for testing!"
title: "[TEST] "
labels:
- bug
-----
This is the template!

View File

@@ -1,5 +1,3 @@
# test_repo
test repo
$$F=ma$$
test repo

28
main.c Normal file
View File

@@ -0,0 +1,28 @@
#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;
}
int a1()
{
return 1;
}