SIGTERM - CI/CD Glossary Definition
SIGTERM (signal 15) requests a graceful shutdown, giving a process a chance to clean up; a process killed by it exits with code 143. CI sends it on cancel or timeout.
Related guides
SIGINT - CI/CD Glossary DefinitionSIGINT (signal 2) is the interrupt sent by Ctrl+C, asking a process to stop. A process terminated by it exits…
SIGKILL - CI/CD Glossary DefinitionSIGKILL: **SIGKILL** (signal 9) force-terminates a process immediately and cannot be caught. In CI it usually…
Signal - CI/CD Glossary DefinitionSignal: A **signal** is an OS message that can terminate a process. A process killed by signal N exits with c…