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

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - name: build
     5      spec:
     6        clone: {}
     7        steps:
     8        - name: Clone with lfs on
     9          spec:
    10            run: ls -lh large-file.zip
    11          type: script
    12        - name: Clone with lfs off3
    13          spec:
    14            steps:
    15            - name: Clone with lfs off
    16              spec:
    17                run: apt-get update && apt-get install -y git-lfs
    18              type: script
    19            - name: Clone with lfs off1
    20              spec:
    21                run: git lfs pull --include=large-file.zip
    22              type: script
    23            - name: Clone with lfs off2
    24              spec:
    25                run: ls -lh large-file.zip
    26              type: script
    27          type: group
    28      type: ci
    29  version: 1