github.com/devtron-labs/ci-runner@v0.0.0-20240518055909-b2672f3349d7/devtron-ci.yaml (about)

     1  version: 0.0.1
     2  pipelineConf:
     3    - appliesTo:
     4        - type: BRANCH_FIXED
     5          value:
     6            - master
     7            - qa
     8        - type: TAG_PATTERN
     9          value:
    10            - "%d.%d.%d-rc"
    11      beforeDockerBuildStages:
    12        - name: "test-1"
    13          script: |
    14            date > abc.report
    15            echo 'hello'
    16          outputLocation: "./abc1.report"
    17        - name: "test-2"
    18          script: |
    19            date > abc.report
    20          outputLocation: "./abcd2.report"
    21      afterDockerBuildStages:
    22        - name: "test-3"
    23          script: |
    24            date > abc.report
    25            echo 'hello'
    26          outputLocation: "./abc3.report"
    27        - name: "test-4"
    28          script: |
    29            date > abc.report
    30          outputLocation: "./abcd4.report"