CI/CD એ Continuous Integration અને Continuous Delivery/Deployment માટે વપરાય છે — આ પ્રથાઓ સૉફ્ટવેર બનાવવું, પરીક્ષણ કરવું અને તૈનાત કરવું સ્વચાલિત કરે છે. હેતુ હોય છે ફેરફારો વારંવાર, વિશ્વસનીયતાથી અને ઝડપથી રિલીઝ કરવો, સ્વચાલિતકરણ મેનુયલ, ભૂલો કરી શકે તેવી પ્રક્રિયાઓને બદલીને.
CI — Continuous Integration
CONTINUOUS INTEGRATION: developers frequently merge code into a shared branch, and each
change is AUTOMATICALLY built and tested:
→ on every push/PR: build the code + run tests (automatically)
→ catch integration problems and bugs EARLY (immediately, not weeks later)
→ keep the main branch in a working state
→ Frequent integration + automated verification = fewer, smaller, easier-to-fix problems.
