github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/yaml/testdata/parallel/example1.yaml.golden (about)

     1  {
     2      "pipelines": {
     3          "default": [
     4              {
     5                  "step": {
     6                      "script": [
     7                          "./build.sh"
     8                      ]
     9                  }
    10              },
    11              {
    12                  "parallel": {
    13                      "steps": [
    14                          {
    15                              "step": {
    16                                  "script": [
    17                                      "./integration-tests.sh --batch 1"
    18                                  ]
    19                              }
    20                          },
    21                          {
    22                              "step": {
    23                                  "script": [
    24                                      "./integration-tests.sh --batch 2"
    25                                  ]
    26                              }
    27                          }
    28                      ]
    29                  }
    30              },
    31              {
    32                  "step": {
    33                      "script": [
    34                          "./deploy.sh"
    35                      ]
    36                  }
    37              }
    38          ]
    39      }
    40  }