IT lexicon Programming CI/CD

CI/CD Continuous Integration / Continuous Deployment

Programming På svenska → Updated: 2026-05-24

Automated pipelines that run tests and ship code on every git commit.

Push to main → pipeline runs tests → if green: builds an image → deploys to staging → smoke tests → deploys to production. Takes minutes, not hours.

Common tools: GitHub Actions, GitLab CI, CircleCI, Jenkins. Standard in modern teams.

← Back to the lexicon