3 Commits

Author SHA1 Message Date
06e5783192 Update README.md
Signed-off-by: a1012112796 <1012112796@qq.com>
2023-05-09 09:08:53 +08:00
7d30518988 test kaTex
Signed-off-by: a1012112796 <1012112796@qq.com>
2022-10-08 19:26:00 +08:00
8be74047e7 添加 '.gitea/ISSUE_TEMPLATE/test.md' 2020-09-12 19:59:33 +08:00
4 changed files with 10 additions and 58 deletions

View File

@@ -1,34 +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
---
kind: pipeline
type: docker
name: promote_test
trigger:
event:
- promote
target:
- production
steps:
- name: test
image: gcc
commands:
- echo "start test"

View File

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

View File

@@ -2,5 +2,6 @@
test repo test repo
1234 1244 $$F=ma$$
aaa ddd

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;
}