2 Commits
v1.0 ... master

Author SHA1 Message Date
dd8b19f90e 更新 main.c
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: a1012112796 <1012112796@qq.com>
2023-06-02 10:02:44 +08:00
767ca5dadd test promote
All checks were successful
continuous-integration/drone Build is passing
continuous-integration/drone/push Build is passing
Signed-off-by: a1012112796 <1012112796@qq.com>
2021-05-15 11:00:09 +08:00
2 changed files with 40 additions and 19 deletions

View File

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

7
main.c
View File

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