get.porter.sh/porter@v1.3.0/tests/integration/testdata/bundles/bundle-with-samenamedeps-lint-error/porter.yaml (about)

     1  # This bundle is designed to cause the porter lint/build commands to fail
     2  schemaType: Bundle
     3  schemaVersion: 1.0.1
     4  name: exec-mixin-lint-error
     5  version: 0.1.0
     6  description: "This bundle is designed to cause the porter lint/build commands to fail, use --no-lint to use it anyway"
     7  registry: "localhost:5000"
     8  
     9  mixins:
    10    - exec
    11  
    12  dependencies:
    13    requires:
    14      - bundle:
    15          reference: ghcr.io/getporter/porter-hello:v0.2.0
    16        name: samename
    17      - bundle:
    18          reference: ghcr.io/getporter/porter-hello:v0.2.0
    19        name: samename
    20  
    21  install:
    22    - exec:
    23        description: trigger a lint error
    24        command: echo
    25        arguments:
    26          - install
    27  
    28  upgrade:
    29    - exec:
    30        description: "World 2.0"
    31        command: echo
    32        arguments:
    33          - upgrade
    34  
    35  uninstall:
    36    - exec:
    37        description: "Uninstall Hello World"
    38        command: echo
    39        arguments:
    40          - uninstall