Runtime vs Build-Time - CI/CD用語集の定義
ランタイム vs ビルド時とは、artifact がビルドされる間に起こること(コンパイル、bundling、設定の焼き込み)と、それが実行されるときに起こることの区別です。これを誤ると、ビルド時のシークレットが漏洩したり、エラーが本番環境まで先送りされたりします。
関連ガイド
Build Argument - CI/CD Glossary DefinitionA build argument is a value passed into a Docker build with --build-arg or ARG, used only while building and…
JIT Compilation - CI/CD Glossary DefinitionJIT compilation translates bytecode into native machine code at run time, optimizing hot paths as the program…
Ahead-of-Time Compilation - CI/CD Glossary DefinitionAhead-of-time compilation turns source or bytecode into native code before run, giving fast, predictable star…