コンパイル - CI/CD用語集の定義
コンパイルとは、ソースコードをマシンが実行できる低レベルの形式(マシンコード、bytecode、または別の言語)に変換するプロセスです。コンパイラは入力全体を読み込み、出力を生成する前にエラーを報告します。
CI では
pipeline の build ステージは通常コンパイルを実行します。コンパイラの終了コードが 0 以外だと、test が実行される前に job が失敗するため、コンパイルエラーが最初に検出されます。
関連ガイド
Transpilation - CI/CD Glossary DefinitionTranspilation: Transpilation (source-to-source compilation) translates code from one high-level language or l…
Bytecode - CI/CD Glossary DefinitionBytecode: Bytecode is a compact, platform-independent instruction set produced by a compiler and executed by…
Linking - CI/CD Glossary DefinitionLinking: Linking is the build step that combines compiled object files and libraries into a single executable…