Process - CI/CD用語集の定義
process とは、独自のメモリ、file descriptor、そしてオペレーティングシステムが割り当てる一意の process ID(PID)を持つ、プログラムの実行中のインスタンスです。
CI での扱い
各 run: ステップは 1 つ以上の process を起動します。ステップが終わると、その終了コードはトップレベルの process の終了コードとなり、そのコードが 0 以外であれば CI は job を失敗させます。
関連ガイド
Background Process - CI/CD Glossary DefinitionBackground Process: A background process is one started with a trailing `&` so the shell returns immediately…
Zombie Process - CI/CD Glossary DefinitionZombie Process: A zombie process is one that has exited but whose entry remains in the process table because…
Exit Code - CI/CD Glossary DefinitionExit Code: An **exit code** is the number a process returns when it ends. Zero means success; non-zero means…