// Package build provides libraries for working with builds of Edge platform // components package build import ( "edge-infra.dev/pkg/edge/constants" ) // Build metadata labels, these are typically added by the EdgeRelease Kpt // function. const ( buildLabel = "build." + constants.Domain // Timestamp should be the time of the commit which produced this artifact TimestampLabel = buildLabel + "/timestamp" // Build job ID, should be unique ID for your build system BuildIDLabel = buildLabel + "/id" // Git commit that produced the artifact CommitLabel = buildLabel + "/commit" // Semantic Version value (https://semver.org) SemVerLabel = buildLabel + "/semver" // Repository name, eg, edge-infra RepoLabel = buildLabel + "/repo" // Org name, eg, ncrvoyix-swt-retail OrgLabel = buildLabel + "/org" )