4 Commits

Author SHA1 Message Date
7038e7ff5d Merge branch 'master' into a1012112796-patch-1 2020-12-30 20:10:57 +08:00
b4130d5cab 更新 'README.org' 2020-12-22 22:08:31 +08:00
2503225ce1 添加 'README.org' 2020-12-22 22:06:01 +08:00
7389f8cbcd 添加 'add.c' 2020-06-04 17:50:50 +08:00
4 changed files with 35 additions and 40 deletions

View File

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

12
README.org Normal file
View File

@@ -0,0 +1,12 @@
without latex delimiters the =_{i=1}= in =\sum_{i=1}^n a_n= is interpreted as subscript.
we support =\(...\)=, =\[...\]=, =$$...$$= and =\begin{$env}...\end{$env}= as latex fragment delimiters.
- \sum_{i=1}^n a_n (without latex delimiter)
- \(\sum_{i=1}^n a_n\)
- \[\sum_{i=1}^n a_n\]
- $$\sum_{i=1}^n a_n$$
- \begin{xyz}\sum_{i=1}^n a_n\end{xyz}
- \begin{xyz}
\sum_{i=1}^n a_n
\end{xyz}
- $2 + 2$, $3 - 3$

4
add.c Normal file
View File

@@ -0,0 +1,4 @@
int add(int a, int b)
{
return a + b;
}

7
main.c
View File

@@ -20,9 +20,4 @@ int main(int argc, char** argv)
int add(int a, int b)
{
return a + b;
}
int a1()
{
return 1;
}
}