Environment Variable - CI/CD Glossary Definition
An environment variable is a named string the OS hands to a process; CI sets them (via env:) to configure builds and tools without changing code.
Related guides
Secret - CI/CD Glossary DefinitionSecret: A **secret** is an encrypted value (token, key) stored by GitHub and injected into workflows without…
ulimit - CI/CD Glossary Definitionulimit sets per-process resource limits - open files, memory, processes. A too-low file-descriptor ulimit cau…
File Descriptor - CI/CD Glossary DefinitionA file descriptor is the integer the OS assigns a process for each open file, socket, or pipe. Exhausting the…