Skip to content

Commit a8a60d4

Browse files
authored
Create devtron-ci.yaml
1 parent 6e0d605 commit a8a60d4

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

devtron-ci.yaml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
version: 0.0.1
2+
pipelineConf:
3+
- appliesTo:
4+
- type: BRANCH_FIXED
5+
value:
6+
- master
7+
- type: TAG_PATTERN
8+
value:
9+
- "%d.%d.%d-rc"
10+
beforeDockerBuildStages:
11+
- name: "test-1"
12+
script: |
13+
date > test.report
14+
echo 'hello'
15+
outputLocation: "./test.report"
16+
- name: "test-2"
17+
script: |
18+
date > test2.report
19+
outputLocation: "./test2.report"
20+
afterDockerBuildStages:
21+
- name: "test-3"
22+
script: |
23+
date > test3.report
24+
echo 'hello'
25+
outputLocation: "./test3.report"
26+
- name: "test-4"
27+
script: |
28+
date > test4.report
29+
outputLocation: "./test4.report"
30+
- appliesTo:
31+
- type: BRANCH_FIXED
32+
value:
33+
- master
34+
- type: TAG_PATTERN
35+
value:
36+
- "%d.%d.%d-rc"
37+
beforeDockerBuildStages:
38+
- name: "stage2-test-1"
39+
script: |
40+
date > test5.report
41+
echo 'hello'
42+
outputLocation: "./test5.report"
43+
afterDockerBuildStages:
44+
- name: "stage2-test-2"
45+
script: |
46+
date > test6.report
47+
echo 'hello'
48+
outputLocation: "./test6.report"

0 commit comments

Comments
 (0)