github.com/buildpacks/pack@v0.33.3-0.20240516162812-884dd1837311/acceptance/testdata/pack_fixtures/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 .package_image_name}}
    15  [[buildpacks]]
    16    image = "{{.package_image_name}}"
    17  {{- end}}
    18  
    19  [[order]]
    20  {{- if .package_id}}
    21  [[order.group]]
    22    id = "{{.package_id}}"
    23    # intentionlly missing version to test support
    24  {{- end}}
    25  
    26  [[order.group]]
    27    id = "read/env"
    28    version = "read-env-version"
    29    optional = true
    30  
    31  [stack]
    32    id = "pack.test.stack"
    33    build-image = "pack-test/build"
    34    run-image = "pack-test/run"
    35    run-image-mirrors = ["{{.run_image_mirror}}"]
    36  
    37  [lifecycle]
    38  {{- if .lifecycle_uri}}
    39    uri = "{{.lifecycle_uri}}"
    40  {{- end}}
    41  {{- if .lifecycle_version}}
    42    version = "{{.lifecycle_version}}"
    43  {{- end}}