O Que É Build Promotion?
Build promotion é a prática de pegar um único artifact produzido uma vez por um build e avançá-lo por ambientes como test, staging e produção sem reconstruí-lo. Cada estágio faz o gate do mesmo binário imutável em vez de compilar um novo. Isso garante que o que você verificou é exatamente o que você envia.
Por que isso importa
Reconstruir por ambiente arrisca diferenças sutis que invalidam os testes anteriores. Promover um único artifact mantém os resultados confiáveis e torna o caminho da release auditável.
Guias relacionados
What Is a Version Manifest?A version manifest is a file recording the exact versions of components in a release, giving one authoritativ…
What Are Release Gate Criteria?Release gate criteria are the explicit conditions a build must satisfy to pass a release gate, such as tests…
What Is a Go/No-Go Decision?A go/no-go decision is the final ruling on whether a release proceeds, made by weighing gate results and risk…