SIGINT - CI/CD Glossary Definition
SIGINT (signal 2) is the interrupt signal sent by Ctrl+C; a process killed by it exits with code 130.
Related guides
SIGTERM - CI/CD Glossary DefinitionSIGTERM (signal 15) asks a process to shut down gracefully so it can clean up. CI sends it on cancel or timeo…
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…
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…