[{"data":1,"prerenderedAt":817},["ShallowReactive",2],{"/en-us/topics/ci-cd/implement-continuous-integration":3,"navigation-en-us":160,"banner-en-us":557,"footer-en-us":567,"next-steps-en-us":807},{"id":4,"title":5,"body":6,"category":6,"config":6,"content":7,"description":6,"extension":152,"meta":153,"navigation":154,"path":155,"seo":156,"slug":6,"stem":158,"testContent":6,"type":6,"__hash__":159},"pages/en-us/topics/ci-cd/implement-continuous-integration/index.yml","",null,[8,22,30,83,105,150],{"type":9,"componentName":9,"componentContent":10},"CommonBreadcrumbs",{"crumbs":11},[12,16,20],{"title":13,"config":14},"Topics",{"href":15},"/topics/",{"title":17,"config":18},"CI/CD",{"href":19},"/topics/ci-cd/",{"title":21},"Implement continuous integration",{"type":23,"componentName":23,"componentContent":24},"CommonArticleHero",{"title":25,"text":26,"config":27},"Why you should implement continuous integration","Implementing continuous integration (CI) ensures that pieces of code are frequently merged and tested, enhancing software quality and streamlining the deployment process. CI practices lead to faster release cycles, better code to production workflows, and numerous benefits for software development teams.\n",{"id":28,"twoColumns":29},"why-you-should-implement-continuous-integration",false,{"type":31,"componentName":31,"componentContent":32},"CommonSideNavigationWithTree",{"anchors":33,"components":56},{"text":34,"data":35},"On this page",[36,40,44,48,52],{"text":37,"config":38},"What is Continuous Integration?",{"href":39},"#what-is-continuous-integration",{"text":41,"config":42},"How to set up continuous integration",{"href":43},"#how-to-set-up-continuous-integration",{"text":45,"config":46},"Essential continuous integration tools",{"href":47},"#essential-continuous-integration-tools",{"text":49,"config":50},"How to do continuous integration the right way",{"href":51},"#how-to-do-continuous-integration-the-right-way",{"text":53,"config":54},"Conclusion",{"href":55},"#conclusion",[57,63,68,73,78],{"type":58,"componentName":58,"componentContent":59},"TopicsCopy",{"header":37,"text":60,"config":61},"Continuous integration (CI) is the practice of merging code into a shared repository, usually several times a day. Within the repository or production environment, automated building and testing is done to make sure there are no integration issues or problems with the code being merged. Continuous integration pipelines conduct automated tests. New code either passes these tests and proceeds to the next stage, or fails. This ensures that only CI-validated code ever makes it into production.",{"id":62},"what-is-continuous-integration",{"type":58,"componentName":58,"componentContent":64},{"header":41,"text":65,"config":66},"Continuous integration done well requires a mindset shift and a commitment to [DevOps best practices](/topics/devops/){data-ga-name=\"devops best practices\" data-ga-location=\"body\"}. In addition to organizational buy-in, there can be significant investments in infrastructure and tooling to consider. Technical leadership with DevOps knowledge and experience working in a cloud native environment will also be crucial for success.\n",{"id":67},"how-to-set-up-continuous-integration",{"type":58,"componentName":58,"componentContent":69},{"header":45,"text":70,"config":71},"Teams can invest in any combination of tools or cloud services, but teams implementing continuous integration (CI) for the first time should start with three essential tools:\n\n* A source code management (SCM) system such as [Git](/solutions/source-code-management/){data-ga-name=\"git\" data-ga-location=\"body\"}.\n\n* A shared source code repository that serves as a single source of truth for all code.\n\n* A continuous integration server that executes scripts for code changes that is integrated with your centralized source code repository (such as [GitLab CI](/solutions/continuous-integration/){data-ga-name=\"gitlab ci\" data-ga-location=\"body\"}).\n",{"id":72},"essential-continuous-integration-tools",{"type":58,"componentName":58,"componentContent":74},{"header":49,"text":75,"config":76},"Continuous integration is more than just tools. While implementing CI tools is part of the process, there is a cultural shift that needs to happen as well. Continuous integration is one part of the larger [DevOps mindset](/topics/devops/){data-ga-name=\"devops mindset\" data-ga-location=\"body\"}. To get the maximum benefits of continuous integration, keep in mind the tools and cultural needs:\n\n### Commit code frequently\n\n\nContinuous integration thrives with small, frequent changes to code. Code tested in small batches makes it easier for developers to identify bugs and errors and ensures better code quality.\n\n\n### Avoid complexity in CI pipelines\n\n\nIt's easy to introduce unnecessary complexity into development environments. Keep things as simple as possible and look for [boring solutions](/blog/boring-solutions-faster-iteration/){data-ga-name=\"boring solutions\" data-ga-location=\"body\"}.\n\n\n### Find the right [continuous integration for your needs](/topics/ci-cd/implement-continuous-integration/#find-the-right-continuous-integration-for-your-needs){data-ga-name=\"continuous integration for your needs\" data-ga-location=\"body\"}\n\n\nNot all CI is created equal, so it's important to [find the right CI](/topics/ci-cd/choose-continuous-integration-tool/){data-ga-name=\"find the right ci\" data-ga-location=\"body\"} for your needs. Is it compatible with your cloud provider? Is it within budget? How does it compare to other similar tools? Does it have room for growth? Ask the right questions and you'll find a CI solution that can help you in the long term.\n",{"id":77},"how-to-do-continuous-integration-the-right-way",{"type":58,"componentName":58,"componentContent":79},{"header":53,"text":80,"config":81},"Implementing continuous integration (CI) is a key component of the DevOps software development practice, offering numerous benefits that enhance the entire software development lifecycle. By merging pieces of code frequently and conducting automated tests, CI ensures high-quality software products and efficient deployment processes. Software development teams benefit from improved development workflows, faster release cycles, and a smoother delivery process.\n\nEmbracing CI practices requires not only the right tools, such as version control systems and CI servers, but also a cultural shift towards collaborative and iterative development practices. This holistic approach to the continuous integration process supports the entire software release process, from development to deployment, resulting in high-quality software and streamlined development cycles.\n",{"id":82},"conclusion",{"type":84,"componentName":84,"componentContent":85},"CommonFaq",{"header":86,"groups":87},"Frequently Asked Questions",[88],{"questions":89},[90,93,96,99,102],{"question":91,"answer":92},"What is continuous integration and how does it work?","Continuous integration is the practice of merging code into a shared repository, usually several times a day. Within the repository or production environment, automated building and testing ensures there are no integration issues or problems with merged code. CI pipelines conduct automated tests where new code either passes and proceeds to next stages or fails.",{"question":94,"answer":95},"What are the three essential tools needed to implement continuous integration?","The three essential tools are a source code management system such as Git, a shared source code repository that serves as single source of truth for all code, and a continuous integration server that executes scripts for code changes integrated with your centralized source code repository like GitLab CI.",{"question":97,"answer":98},"What requirements beyond tools are necessary for successful CI implementation?","Successful CI requires a mindset shift and commitment to DevOps best practices. Organizations need buy-in, significant investments in infrastructure and tooling, and technical leadership with DevOps knowledge and experience working in cloud native environments. CI is part of larger DevOps cultural transformation.",{"question":100,"answer":101},"What are the key practices for doing continuous integration correctly?","Key practices include committing code frequently with small changes tested in small batches to identify bugs easier, avoiding complexity in CI pipelines by keeping things simple with boring solutions, and finding the right CI solution by asking questions about cloud provider compatibility, budget, comparisons, and growth potential.",{"question":103,"answer":104},"How does continuous integration improve software development workflows and quality?","CI ensures high-quality software products and efficient deployment processes by merging code frequently and conducting automated tests. Teams benefit from improved development workflows, faster release cycles, and smoother delivery processes. CI validates only quality code reaches production while enabling collaborative iterative development practices throughout the software lifecycle.",{"type":106,"componentName":106,"componentContent":107},"CommonResourcesContainer",{"header":108,"tabs":109},"Suggested Content",[110],{"name":111,"items":112,"config":149},"resources",[113,123,133,141],{"header":114,"type":115,"image":116,"link":119},"Making the case for CI/CD in your organization","Webcast",{"altText":114,"config":117},{"src":118},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159368/Website/Topics/drupalassoc_cover.jpg",{"text":120,"config":121},"Watch now",{"href":122,"icon":115,"modal":29},"/webcast/cicd-in-your-organization/",{"header":124,"type":125,"image":126,"link":129},"Need DevOps buy-in? Here's how to convince stakeholders","Web",{"altText":124,"config":127},{"src":128},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159343/Website/Topics/customers-link.jpg",{"text":130,"config":131},"Learn more",{"href":132,"icon":125,"modal":29},"/blog/devops-stakeholder-buyin/",{"header":134,"type":125,"image":135,"link":138},"Getting [meta] with GitLab CI/CD: Building build images",{"altText":134,"config":136},{"src":137},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159401/Website/Topics/hotjar.jpg",{"text":130,"config":139},{"href":140,"icon":125,"modal":29},"/blog/building-build-images/",{"header":142,"type":125,"image":143,"link":146},"A beginner's guide to continuous integration",{"altText":142,"config":144},{"src":145},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158563/Website/Topics/modernize-cicd.jpg",{"text":130,"config":147},{"href":148,"icon":125,"modal":29},"/blog/a-beginners-guide-to-continuous-integration/",{"key":111},{"type":151,"componentName":151},"CommonNextSteps","yml",{},true,"/en-us/topics/ci-cd/implement-continuous-integration",{"title":25,"ogTitle":25,"description":157,"ogDescription":157},"Implementing continuous integration is a challenge. Find out the three essential tools you need and how to do continuous integration the right way.","en-us/topics/ci-cd/implement-continuous-integration/index","oBlFKxVY1RmvHdpKO8UX5dH2xGXRlCiU7gWKsyh2wzs",{"data":161},{"logo":162,"freeTrial":167,"sales":172,"login":177,"items":182,"search":487,"minimal":518,"duo":537,"pricingDeployment":547},{"config":163},{"href":164,"dataGaName":165,"dataGaLocation":166},"/","gitlab logo","header",{"text":168,"config":169},"Get free trial",{"href":170,"dataGaName":171,"dataGaLocation":166},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":173,"config":174},"Talk to sales",{"href":175,"dataGaName":176,"dataGaLocation":166},"/sales/","sales",{"text":178,"config":179},"Sign in",{"href":180,"dataGaName":181,"dataGaLocation":166},"https://gitlab.com/users/sign_in/","sign in",[183,209,303,308,408,468],{"text":184,"config":185,"cards":187},"Platform",{"dataNavLevelOne":186},"platform",[188,194,202],{"title":184,"description":189,"link":190},"The intelligent orchestration platform for DevSecOps",{"text":191,"config":192},"Explore our Platform",{"href":193,"dataGaName":186,"dataGaLocation":166},"/platform/",{"title":195,"description":196,"link":197},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":198,"config":199},"Meet GitLab Duo",{"href":200,"dataGaName":201,"dataGaLocation":166},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":203,"description":204,"link":205},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":130,"config":206},{"href":207,"dataGaName":208,"dataGaLocation":166},"/why-gitlab/","why gitlab",{"text":210,"left":154,"config":211,"link":213,"lists":217,"footer":285},"Product",{"dataNavLevelOne":212},"solutions",{"text":214,"config":215},"View all Solutions",{"href":216,"dataGaName":212,"dataGaLocation":166},"/solutions/",[218,241,264],{"title":219,"description":220,"link":221,"items":226},"Automation","CI/CD and automation to accelerate deployment",{"config":222},{"icon":223,"href":224,"dataGaName":225,"dataGaLocation":166},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[227,230,233,237],{"text":17,"config":228},{"href":229,"dataGaLocation":166,"dataGaName":17},"/solutions/continuous-integration/",{"text":195,"config":231},{"href":200,"dataGaLocation":166,"dataGaName":232},"gitlab duo agent platform - product menu",{"text":234,"config":235},"Source Code Management",{"href":236,"dataGaLocation":166,"dataGaName":234},"/solutions/source-code-management/",{"text":238,"config":239},"Automated Software Delivery",{"href":224,"dataGaLocation":166,"dataGaName":240},"Automated software delivery",{"title":242,"description":243,"link":244,"items":249},"Security","Deliver code faster without compromising security",{"config":245},{"href":246,"dataGaName":247,"dataGaLocation":166,"icon":248},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[250,254,259],{"text":251,"config":252},"Application Security Testing",{"href":246,"dataGaName":253,"dataGaLocation":166},"Application security testing",{"text":255,"config":256},"Software Supply Chain Security",{"href":257,"dataGaLocation":166,"dataGaName":258},"/solutions/supply-chain/","Software supply chain security",{"text":260,"config":261},"Software Compliance",{"href":262,"dataGaName":263,"dataGaLocation":166},"/solutions/software-compliance/","software compliance",{"title":265,"link":266,"items":271},"Measurement",{"config":267},{"icon":268,"href":269,"dataGaName":270,"dataGaLocation":166},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[272,276,280],{"text":273,"config":274},"Visibility & Measurement",{"href":269,"dataGaLocation":166,"dataGaName":275},"Visibility and Measurement",{"text":277,"config":278},"Value Stream Management",{"href":279,"dataGaLocation":166,"dataGaName":277},"/solutions/value-stream-management/",{"text":281,"config":282},"Analytics & Insights",{"href":283,"dataGaLocation":166,"dataGaName":284},"/solutions/analytics-and-insights/","Analytics and insights",{"title":286,"items":287},"GitLab for",[288,293,298],{"text":289,"config":290},"Enterprise",{"href":291,"dataGaLocation":166,"dataGaName":292},"/enterprise/","enterprise",{"text":294,"config":295},"Small Business",{"href":296,"dataGaLocation":166,"dataGaName":297},"/small-business/","small business",{"text":299,"config":300},"Public Sector",{"href":301,"dataGaLocation":166,"dataGaName":302},"/solutions/public-sector/","public sector",{"text":304,"config":305},"Pricing",{"href":306,"dataGaName":307,"dataGaLocation":166,"dataNavLevelOne":307},"/pricing/","pricing",{"text":309,"config":310,"link":311,"lists":315,"feature":395},"Resources",{"dataNavLevelOne":111},{"text":312,"config":313},"View all resources",{"href":314,"dataGaName":111,"dataGaLocation":166},"/resources/",[316,349,367],{"title":317,"items":318},"Getting started",[319,324,329,334,339,344],{"text":320,"config":321},"Install",{"href":322,"dataGaName":323,"dataGaLocation":166},"/install/","install",{"text":325,"config":326},"Quick start guides",{"href":327,"dataGaName":328,"dataGaLocation":166},"/get-started/","quick setup checklists",{"text":330,"config":331},"Learn",{"href":332,"dataGaLocation":166,"dataGaName":333},"https://university.gitlab.com/","learn",{"text":335,"config":336},"Product documentation",{"href":337,"dataGaName":338,"dataGaLocation":166},"https://docs.gitlab.com/","product documentation",{"text":340,"config":341},"Best practice videos",{"href":342,"dataGaName":343,"dataGaLocation":166},"/getting-started-videos/","best practice videos",{"text":345,"config":346},"Integrations",{"href":347,"dataGaName":348,"dataGaLocation":166},"/integrations/","integrations",{"title":350,"items":351},"Discover",[352,357,362],{"text":353,"config":354},"Customer success stories",{"href":355,"dataGaName":356,"dataGaLocation":166},"/customers/","customer success stories",{"text":358,"config":359},"Blog",{"href":360,"dataGaName":361,"dataGaLocation":166},"/blog/","blog",{"text":363,"config":364},"Remote",{"href":365,"dataGaName":366,"dataGaLocation":166},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":368,"items":369},"Connect",[370,375,380,385,390],{"text":371,"config":372},"GitLab Services",{"href":373,"dataGaName":374,"dataGaLocation":166},"/services/","services",{"text":376,"config":377},"Community",{"href":378,"dataGaName":379,"dataGaLocation":166},"/community/","community",{"text":381,"config":382},"Forum",{"href":383,"dataGaName":384,"dataGaLocation":166},"https://forum.gitlab.com/","forum",{"text":386,"config":387},"Events",{"href":388,"dataGaName":389,"dataGaLocation":166},"/events/","events",{"text":391,"config":392},"Partners",{"href":393,"dataGaName":394,"dataGaLocation":166},"/partners/","partners",{"backgroundColor":396,"textColor":397,"text":398,"image":399,"link":403},"#2f2a6b","#fff","Insights for the future of software development",{"altText":400,"config":401},"the source promo card",{"src":402},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":404,"config":405},"Read the latest",{"href":406,"dataGaName":407,"dataGaLocation":166},"/the-source/","the source",{"text":409,"config":410,"lists":412},"Company",{"dataNavLevelOne":411},"company",[413],{"items":414},[415,420,426,428,433,438,443,448,453,458,463],{"text":416,"config":417},"About",{"href":418,"dataGaName":419,"dataGaLocation":166},"/company/","about",{"text":421,"config":422,"footerGa":425},"Jobs",{"href":423,"dataGaName":424,"dataGaLocation":166},"/jobs/","jobs",{"dataGaName":424},{"text":386,"config":427},{"href":388,"dataGaName":389,"dataGaLocation":166},{"text":429,"config":430},"Leadership",{"href":431,"dataGaName":432,"dataGaLocation":166},"/company/team/e-group/","leadership",{"text":434,"config":435},"Team",{"href":436,"dataGaName":437,"dataGaLocation":166},"/company/team/","team",{"text":439,"config":440},"Handbook",{"href":441,"dataGaName":442,"dataGaLocation":166},"https://handbook.gitlab.com/","handbook",{"text":444,"config":445},"Investor relations",{"href":446,"dataGaName":447,"dataGaLocation":166},"https://ir.gitlab.com/","investor relations",{"text":449,"config":450},"Trust Center",{"href":451,"dataGaName":452,"dataGaLocation":166},"/security/","trust center",{"text":454,"config":455},"AI Transparency Center",{"href":456,"dataGaName":457,"dataGaLocation":166},"/ai-transparency-center/","ai transparency center",{"text":459,"config":460},"Newsletter",{"href":461,"dataGaName":462,"dataGaLocation":166},"/company/contact/#contact-forms","newsletter",{"text":464,"config":465},"Press",{"href":466,"dataGaName":467,"dataGaLocation":166},"/press/","press",{"text":469,"config":470,"lists":471},"Contact us",{"dataNavLevelOne":411},[472],{"items":473},[474,477,482],{"text":173,"config":475},{"href":175,"dataGaName":476,"dataGaLocation":166},"talk to sales",{"text":478,"config":479},"Support portal",{"href":480,"dataGaName":481,"dataGaLocation":166},"https://support.gitlab.com","support portal",{"text":483,"config":484},"Customer portal",{"href":485,"dataGaName":486,"dataGaLocation":166},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":488,"login":489,"suggestions":496},"Close",{"text":490,"link":491},"To search repositories and projects, login to",{"text":492,"config":493},"gitlab.com",{"href":180,"dataGaName":494,"dataGaLocation":495},"search login","search",{"text":497,"default":498},"Suggestions",[499,501,505,507,511,515],{"text":195,"config":500},{"href":200,"dataGaName":195,"dataGaLocation":495},{"text":502,"config":503},"Code Suggestions (AI)",{"href":504,"dataGaName":502,"dataGaLocation":495},"/solutions/code-suggestions/",{"text":17,"config":506},{"href":229,"dataGaName":17,"dataGaLocation":495},{"text":508,"config":509},"GitLab on AWS",{"href":510,"dataGaName":508,"dataGaLocation":495},"/partners/technology-partners/aws/",{"text":512,"config":513},"GitLab on Google Cloud",{"href":514,"dataGaName":512,"dataGaLocation":495},"/partners/technology-partners/google-cloud-platform/",{"text":516,"config":517},"Why GitLab?",{"href":207,"dataGaName":516,"dataGaLocation":495},{"freeTrial":519,"mobileIcon":524,"desktopIcon":529,"secondaryButton":532},{"text":520,"config":521},"Start free trial",{"href":522,"dataGaName":171,"dataGaLocation":523},"https://gitlab.com/-/trials/new/","nav",{"altText":525,"config":526},"Gitlab Icon",{"src":527,"dataGaName":528,"dataGaLocation":523},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":525,"config":530},{"src":531,"dataGaName":528,"dataGaLocation":523},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":533,"config":534},"Get Started",{"href":535,"dataGaName":536,"dataGaLocation":523},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/compare/gitlab-vs-github/","get started",{"freeTrial":538,"mobileIcon":543,"desktopIcon":545},{"text":539,"config":540},"Learn more about GitLab Duo",{"href":541,"dataGaName":542,"dataGaLocation":523},"/gitlab-duo/","gitlab duo",{"altText":525,"config":544},{"src":527,"dataGaName":528,"dataGaLocation":523},{"altText":525,"config":546},{"src":531,"dataGaName":528,"dataGaLocation":523},{"freeTrial":548,"mobileIcon":553,"desktopIcon":555},{"text":549,"config":550},"Back to pricing",{"href":306,"dataGaName":551,"dataGaLocation":523,"icon":552},"back to pricing","GoBack",{"altText":525,"config":554},{"src":527,"dataGaName":528,"dataGaLocation":523},{"altText":525,"config":556},{"src":531,"dataGaName":528,"dataGaLocation":523},{"title":558,"button":559,"config":564},"See how agentic AI transforms software delivery",{"text":560,"config":561},"Watch GitLab Transcend now",{"href":562,"dataGaName":563,"dataGaLocation":166},"/events/transcend/virtual/","transcend event",{"layout":565,"icon":566},"release","AiStar",{"data":568},{"text":569,"source":570,"edit":576,"contribute":581,"config":586,"items":591,"minimal":796},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":571,"config":572},"View page source",{"href":573,"dataGaName":574,"dataGaLocation":575},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":577,"config":578},"Edit this page",{"href":579,"dataGaName":580,"dataGaLocation":575},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":582,"config":583},"Please contribute",{"href":584,"dataGaName":585,"dataGaLocation":575},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":587,"facebook":588,"youtube":589,"linkedin":590},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[592,639,691,735,762],{"title":304,"links":593,"subMenu":608},[594,598,603],{"text":595,"config":596},"View plans",{"href":306,"dataGaName":597,"dataGaLocation":575},"view plans",{"text":599,"config":600},"Why Premium?",{"href":601,"dataGaName":602,"dataGaLocation":575},"/pricing/premium/","why premium",{"text":604,"config":605},"Why Ultimate?",{"href":606,"dataGaName":607,"dataGaLocation":575},"/pricing/ultimate/","why ultimate",[609],{"title":610,"links":611},"Contact Us",[612,615,617,619,624,629,634],{"text":613,"config":614},"Contact sales",{"href":175,"dataGaName":176,"dataGaLocation":575},{"text":478,"config":616},{"href":480,"dataGaName":481,"dataGaLocation":575},{"text":483,"config":618},{"href":485,"dataGaName":486,"dataGaLocation":575},{"text":620,"config":621},"Status",{"href":622,"dataGaName":623,"dataGaLocation":575},"https://status.gitlab.com/","status",{"text":625,"config":626},"Terms of use",{"href":627,"dataGaName":628,"dataGaLocation":575},"/terms/","terms of use",{"text":630,"config":631},"Privacy statement",{"href":632,"dataGaName":633,"dataGaLocation":575},"/privacy/","privacy statement",{"text":635,"config":636},"Cookie preferences",{"dataGaName":637,"dataGaLocation":575,"id":638,"isOneTrustButton":154},"cookie preferences","ot-sdk-btn",{"title":210,"links":640,"subMenu":649},[641,645],{"text":642,"config":643},"DevSecOps platform",{"href":193,"dataGaName":644,"dataGaLocation":575},"devsecops platform",{"text":646,"config":647},"AI-Assisted Development",{"href":541,"dataGaName":648,"dataGaLocation":575},"ai-assisted development",[650],{"title":13,"links":651},[652,656,661,666,671,676,681,686],{"text":653,"config":654},"CICD",{"href":19,"dataGaName":655,"dataGaLocation":575},"cicd",{"text":657,"config":658},"GitOps",{"href":659,"dataGaName":660,"dataGaLocation":575},"/topics/gitops/","gitops",{"text":662,"config":663},"DevOps",{"href":664,"dataGaName":665,"dataGaLocation":575},"/topics/devops/","devops",{"text":667,"config":668},"Version Control",{"href":669,"dataGaName":670,"dataGaLocation":575},"/topics/version-control/","version control",{"text":672,"config":673},"DevSecOps",{"href":674,"dataGaName":675,"dataGaLocation":575},"/topics/devsecops/","devsecops",{"text":677,"config":678},"Cloud Native",{"href":679,"dataGaName":680,"dataGaLocation":575},"/topics/cloud-native/","cloud native",{"text":682,"config":683},"AI for Coding",{"href":684,"dataGaName":685,"dataGaLocation":575},"/topics/devops/ai-for-coding/","ai for coding",{"text":687,"config":688},"Agentic AI",{"href":689,"dataGaName":690,"dataGaLocation":575},"/topics/agentic-ai/","agentic ai",{"title":692,"links":693},"Solutions",[694,696,698,703,707,710,714,717,719,722,725,730],{"text":251,"config":695},{"href":246,"dataGaName":251,"dataGaLocation":575},{"text":240,"config":697},{"href":224,"dataGaName":225,"dataGaLocation":575},{"text":699,"config":700},"Agile development",{"href":701,"dataGaName":702,"dataGaLocation":575},"/solutions/agile-delivery/","agile delivery",{"text":704,"config":705},"SCM",{"href":236,"dataGaName":706,"dataGaLocation":575},"source code management",{"text":653,"config":708},{"href":229,"dataGaName":709,"dataGaLocation":575},"continuous integration & delivery",{"text":711,"config":712},"Value stream management",{"href":279,"dataGaName":713,"dataGaLocation":575},"value stream management",{"text":657,"config":715},{"href":716,"dataGaName":660,"dataGaLocation":575},"/solutions/gitops/",{"text":289,"config":718},{"href":291,"dataGaName":292,"dataGaLocation":575},{"text":720,"config":721},"Small business",{"href":296,"dataGaName":297,"dataGaLocation":575},{"text":723,"config":724},"Public sector",{"href":301,"dataGaName":302,"dataGaLocation":575},{"text":726,"config":727},"Education",{"href":728,"dataGaName":729,"dataGaLocation":575},"/solutions/education/","education",{"text":731,"config":732},"Financial services",{"href":733,"dataGaName":734,"dataGaLocation":575},"/solutions/finance/","financial services",{"title":309,"links":736},[737,739,741,743,746,748,750,752,754,756,758,760],{"text":320,"config":738},{"href":322,"dataGaName":323,"dataGaLocation":575},{"text":325,"config":740},{"href":327,"dataGaName":328,"dataGaLocation":575},{"text":330,"config":742},{"href":332,"dataGaName":333,"dataGaLocation":575},{"text":335,"config":744},{"href":337,"dataGaName":745,"dataGaLocation":575},"docs",{"text":358,"config":747},{"href":360,"dataGaName":361,"dataGaLocation":575},{"text":353,"config":749},{"href":355,"dataGaName":356,"dataGaLocation":575},{"text":363,"config":751},{"href":365,"dataGaName":366,"dataGaLocation":575},{"text":371,"config":753},{"href":373,"dataGaName":374,"dataGaLocation":575},{"text":376,"config":755},{"href":378,"dataGaName":379,"dataGaLocation":575},{"text":381,"config":757},{"href":383,"dataGaName":384,"dataGaLocation":575},{"text":386,"config":759},{"href":388,"dataGaName":389,"dataGaLocation":575},{"text":391,"config":761},{"href":393,"dataGaName":394,"dataGaLocation":575},{"title":409,"links":763},[764,766,768,770,772,774,776,780,785,787,789,791],{"text":416,"config":765},{"href":418,"dataGaName":411,"dataGaLocation":575},{"text":421,"config":767},{"href":423,"dataGaName":424,"dataGaLocation":575},{"text":429,"config":769},{"href":431,"dataGaName":432,"dataGaLocation":575},{"text":434,"config":771},{"href":436,"dataGaName":437,"dataGaLocation":575},{"text":439,"config":773},{"href":441,"dataGaName":442,"dataGaLocation":575},{"text":444,"config":775},{"href":446,"dataGaName":447,"dataGaLocation":575},{"text":777,"config":778},"Sustainability",{"href":779,"dataGaName":777,"dataGaLocation":575},"/sustainability/",{"text":781,"config":782},"Diversity, inclusion and belonging (DIB)",{"href":783,"dataGaName":784,"dataGaLocation":575},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":449,"config":786},{"href":451,"dataGaName":452,"dataGaLocation":575},{"text":459,"config":788},{"href":461,"dataGaName":462,"dataGaLocation":575},{"text":464,"config":790},{"href":466,"dataGaName":467,"dataGaLocation":575},{"text":792,"config":793},"Modern Slavery Transparency Statement",{"href":794,"dataGaName":795,"dataGaLocation":575},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":797},[798,801,804],{"text":799,"config":800},"Terms",{"href":627,"dataGaName":628,"dataGaLocation":575},{"text":802,"config":803},"Cookies",{"dataGaName":637,"dataGaLocation":575,"id":638,"isOneTrustButton":154},{"text":805,"config":806},"Privacy",{"href":632,"dataGaName":633,"dataGaLocation":575},{"header":808,"blurb":809,"button":810,"secondaryButton":815},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":811,"config":812},"Get your free trial",{"href":813,"dataGaName":171,"dataGaLocation":814},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":613,"config":816},{"href":175,"dataGaName":176,"dataGaLocation":814},1772652088894]