github.com/buildpacks/pack@v0.33.3-0.20240516162812-884dd1837311/acceptance/testdata/pack_fixtures/nested_builder.toml (about)

     1  [[buildpacks]]
     2    id = "read/env"
     3    version = "read-env-version"
     4    uri = "read-env-buildpack.tgz"
     5  
     6  [[buildpacks]]
     7    # intentionally missing id/version as they are optional
     8    uri = "noop-buildpack.tgz"
     9  
    10  [[buildpacks]]
    11    # noop-buildpack-2 has the same id but a different version compared to noop-buildpack
    12    uri = "noop-buildpack-2.tgz"
    13  
    14  {{- if .simple_layers_buildpack_different_sha}}
    15  [[buildpacks]]
    16    image = "{{.simple_layers_buildpack_different_sha}}"
    17    version = "simple-layers-version"
    18  {{- end}}
    19  
    20  {{- if .nested_level_2_buildpack}}
    21  [[buildpacks]]
    22    image = "{{.nested_level_2_buildpack}}"
    23  {{- end}}
    24  
    25  {{- if .nested_level_1_buildpack}}
    26  [[buildpacks]]
    27    image = "{{.nested_level_1_buildpack}}"
    28  {{- end}}
    29  
    30  [[order]]
    31  {{- if .package_id}}
    32  [[order.group]]
    33    id = "{{.package_id}}"
    34    # intentionlly missing version to test support
    35  {{- end}}
    36  
    37  [[order.group]]
    38    id = "read/env"
    39    version = "read-env-version"
    40    optional = true
    41  
    42  [stack]
    43    id = "pack.test.stack"
    44    build-image = "pack-test/build"
    45    run-image = "pack-test/run"
    46    run-image-mirrors = ["{{.run_image_mirror}}"]
    47  
    48  [lifecycle]
    49  {{- if .lifecycle_uri}}
    50    uri = "{{.lifecycle_uri}}"
    51  {{- end}}
    52  {{- if .lifecycle_version}}
    53    version = "{{.lifecycle_version}}"
    54  {{- end}}