[{"data":1,"prerenderedAt":1379},["ShallowReactive",2],{"/blog/using-gitlab-ci-to-build-gitlab-faster":3,"navigation-en-us":592,"banner-en-us":1019,"footer-en-us":1029,"blog-post-authors-en-us-Rémy Coutable":1273,"blog-related-posts-en-us-using-gitlab-ci-to-build-gitlab-faster":1289,"blog-promotions-en-us":1315,"next-steps-en-us":1369},{"id":4,"title":5,"authors":6,"body":8,"category":571,"date":572,"description":573,"extension":574,"externalUrl":575,"faq":575,"featured":576,"heroImage":577,"meta":578,"navigation":579,"path":580,"seo":581,"slug":585,"stem":586,"tags":587,"template":590,"updatedDate":575,"__hash__":591},"blogPosts/en-us/blog/using-gitlab-ci-to-build-gitlab-faster.md","How we used GitLab CI to build GitLab faster",[7],"Rémy Coutable",{"type":9,"value":10,"toc":556},"minimark",[11,57,62,78,162,169,172,188,192,203,210,215,224,227,299,311,318,331,338,344,354,385,391,398,407,414,439,445,453,457,466,472,476,481,487,492,498,503,509,513,525,536,539,552],[12,13,14,15,19,20,23,24,30,31,36,37,42,43,46,47,51,52,56],"p",{},"GitLab is an ",[16,17,18],"span",{},"open source project",", but also a ",[16,21,22],{},"commercial project",". For historic\nreasons, we have two Git repositories: ",[16,25,26],{},[27,28,29],"code",{},"gitlab-ce"," for GitLab Core and\n",[16,32,33],{},[27,34,35],{},"gitlab-ee"," for GitLab Enterprise packages (you can read ",[38,39,41],"a",{"href":40},"/blog/gitlab-tiers/","our recent blog post explaining GitLab self-managed tiers",").\nWhile we're working on having a ",[16,44,45],{},"single codebase",", we still need to regularly\nmerge ",[16,48,49],{},[27,50,29],{}," into ",[16,53,54],{},[27,55,35],{}," since most of the development happens on\nGitLab Core, but we also develop features on top of it for GitLab Starter, Premium, and Ultimate.",[58,59,61],"h2",{"id":60},"how-we-used-to-merge-gitlab-ce-into-gitlab-ee","How we used to merge GitLab CE into GitLab EE",[12,63,64,65,51,69,73,74,77],{},"Until December 2017, the merge of ",[16,66,67],{},[27,68,29],{},[16,70,71],{},[27,72,35],{}," was manual\non a daily basis with basically the following commands (",[16,75,76],{},"see the full documentation","):",[79,80,85],"pre",{"className":81,"code":82,"language":83,"meta":84,"style":84},"language-shell shiki shiki-themes github-light","# the `origin` remote refers to https://gitlab.com/gitlab-org/gitlab-ee.git\n# the `ce` remote refers to https://gitlab.com/gitlab-org/gitlab-ce.git\ngit fetch origin master\ngit checkout -b ce-to-ee origin/master\ngit fetch ce master\ngit merge --no-ff ce/master\n","shell","",[27,86,87,95,101,118,136,148],{"__ignoreMap":84},[16,88,91],{"class":89,"line":90},"line",1,[16,92,94],{"class":93},"sAwPA","# the `origin` remote refers to https://gitlab.com/gitlab-org/gitlab-ee.git\n",[16,96,98],{"class":89,"line":97},2,[16,99,100],{"class":93},"# the `ce` remote refers to https://gitlab.com/gitlab-org/gitlab-ce.git\n",[16,102,104,108,112,115],{"class":89,"line":103},3,[16,105,107],{"class":106},"s7eDp","git",[16,109,111],{"class":110},"sYBdl"," fetch",[16,113,114],{"class":110}," origin",[16,116,117],{"class":110}," master\n",[16,119,121,123,126,130,133],{"class":89,"line":120},4,[16,122,107],{"class":106},[16,124,125],{"class":110}," checkout",[16,127,129],{"class":128},"sYu0t"," -b",[16,131,132],{"class":110}," ce-to-ee",[16,134,135],{"class":110}," origin/master\n",[16,137,139,141,143,146],{"class":89,"line":138},5,[16,140,107],{"class":106},[16,142,111],{"class":110},[16,144,145],{"class":110}," ce",[16,147,117],{"class":110},[16,149,151,153,156,159],{"class":89,"line":150},6,[16,152,107],{"class":106},[16,154,155],{"class":110}," merge",[16,157,158],{"class":128}," --no-ff",[16,160,161],{"class":110}," ce/master\n",[12,163,164,165,168],{},"At this point, since we'd merge a day's worth of GitLab Core's new commits,\nchances were good we'd see conflicts.\nMost of the time, the person responsible for this process would handle the\nconflict resolutions, commit them and push the ",[27,166,167],{},"ce-to-ee"," branch to GitLab.com.",[12,170,171],{},"There were a few problems with this approach:",[173,174,175,179,182,185],"ul",{},[176,177,178],"li",{},"GitLab's development pace is fast, which means the longer we go without a\nmerge, the more changes there are and thus more opportunities for conflicts",[176,180,181],{},"If we had many conflicts, it could take a significant amount of time for the\ndeveloper responsible for the merge",[176,183,184],{},"The developer performing the merge wasn't always the best person to resolve the\nconflicts",[176,186,187],{},"Significant time was spent identifying and notifying developers to help resolve conflicts",[58,189,191],{"id":190},"the-solution","The solution",[12,193,194,195,198,199,202],{},"Our plan was to have a single script that would automate the merge, and in the\ncase of conflicts, identify the person best suited to resolve each of them.\nIt would then create the merge request using the ",[16,196,197],{},"GitLab API"," and a\n",[16,200,201],{},"GitLab API Ruby wrapper",", and post a message in Slack when a new merge request\nwas created or an existing one was still pending.",[12,204,205,206,209],{},"Finally, we'd use GitLab's ",[16,207,208],{},"pipeline schedules"," to run the script every three hours.",[211,212,214],"h3",{"id":213},"step-1-write-the-script","Step 1: Write the script",[12,216,217,218,223],{},"We chose to write the script in our ",[16,219,220],{},[27,221,222],{},"release-tools"," project, since it already\nhad a strong foundation for working with the relevant Git repositories.",[12,225,226],{},"This script was written iteratively as a set of classes over the course of a few\nmonths:",[228,229,230,237,252,289],"ol",{},[176,231,232],{},[38,233,236],{"href":234,"rel":235},"https://gitlab.com/gitlab-org/release-tools/merge_requests/139",[],"Add the ability to find/create a merge request",[176,238,239],{},[38,240,243,244,247,248,251],{"href":241,"rel":242},"https://gitlab.com/gitlab-org/release-tools/merge_requests/168",[],"Move remotes to the ",[27,245,246],{},"Project"," classes and get rid of the ",[27,249,250],{},"Remotes"," class",[176,253,254],{},[38,255,258,259,262,263,262,266,262,269,262,272,262,275,262,278,281,282,285,286],{"href":256,"rel":257},"https://gitlab.com/gitlab-org/release-tools/merge_requests/177",[],"Add ",[27,260,261],{},"head",", ",[27,264,265],{},"status",[27,267,268],{},"log",[27,270,271],{},"fetch",[27,273,274],{},"checkout_new_branch",[27,276,277],{},"pull",[27,279,280],{},"push",", and ",[27,283,284],{},"merge"," to ",[27,287,288],{},"RemoteRepository",[176,290,291],{},[38,292,295,296,251],{"href":293,"rel":294},"https://gitlab.com/gitlab-org/release-tools/merge_requests/197",[],"Introduce a new ",[27,297,298],{},"CommitAuthor",[12,300,301,302,310],{},"The last piece of the puzzle was the new ",[38,303,306,309],{"href":304,"rel":305},"https://gitlab.com/gitlab-org/release-tools/merge_requests/219",[],[27,307,308],{},"upstream_merge"," Rake task",".",[211,312,314,315,317],{"id":313},"step-2-create-a-pair-of-ssh-keys-and-add-the-public-key-to-the-gitlab-ee-project","Step 2: Create a pair of SSH keys and add the public key to the ",[27,316,35],{}," project",[12,319,320,321,325,326,330],{},"Under ",[322,323,324],"strong",{},"Repository Settings > Deploy Keys"," of the ",[16,327,328],{},[27,329,35],{}," project:",[12,332,333],{},[334,335],"img",{"alt":336,"src":337},"Deploy key in gitlab-ee","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782399257/blog/Content%20Images/using-gitlab-ci-to-build-gitlab-faster/step2.png",[211,339,341,342,317],{"id":340},"step-3-create-secret-variables-in-the-release-tools-project","Step 3: Create secret variables in the ",[27,343,222],{},[12,345,320,346,325,349,353],{},[322,347,348],{},"CI / CD Settings",[16,350,351],{},[27,352,222],{}," project, create three secret\nvariables:",[173,355,356,362,374],{},[176,357,358,361],{},[27,359,360],{},"AUTO_UPSTREAM_MERGE_BOT_SSH_PRIVATE_KEY"," for the SSH private key",[176,363,364,367,368,373],{},[27,365,366],{},"GITLAB_API_PRIVATE_TOKEN"," is a personal access token for our ",[16,369,370],{},[27,371,372],{},"@gitlab-bot","\nuser",[176,375,376,379,380],{},[27,377,378],{},"SLACK_UPSTREAM_MERGE_URL"," which is the Slack webhook URL we created\nspecifically for this job and used in our ",[16,381,382,251],{},[27,383,384],{},"Slack::UpstreamMergeNotification",[12,386,387],{},[334,388],{"alt":389,"src":390},"Secret variable","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782399257/blog/Content%20Images/using-gitlab-ci-to-build-gitlab-faster/step3.png",[211,392,394,395,397],{"id":393},"step-4-add-a-new-ci-job-that-runs-the-upstream_merge-rake-task-for-pipeline-schedules-only","Step 4: Add a new CI job that runs the ",[27,396,308],{}," Rake task for pipeline schedules only",[12,399,400],{},[401,402,403,404,310],"em",{},"This was heavily inspired by ",[16,405,406],{},"GitBot – automating boring Git operations with CI",[12,408,409,410,413],{},"Create a new ",[27,411,412],{},"upstream-merge"," CI job that:",[173,415,416,423,433],{},[176,417,418,419,422],{},"Adds the SSH private key to the ",[27,420,421],{},"~/.ssh"," folder",[176,424,258,425,428,429,432],{},[27,426,427],{},"gitlab.com"," to the ",[27,430,431],{},"~/.ssh/known_hosts"," file",[176,434,435,436],{},"Runs ",[27,437,438],{},"bundle exec rake upstream_merge",[12,440,441],{},[334,442],{"alt":443,"src":444},"upstream-merge job","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782399257/blog/Content%20Images/using-gitlab-ci-to-build-gitlab-faster/step4.png",[12,446,447,448,310],{},"You can ",[38,449,452],{"href":450,"rel":451},"https://gitlab.com/gitlab-org/release-tools/blob/1cd437823113d4529919c29b177bb2037c19fc3c/.gitlab-ci.yml#L50-64",[],"check out the task for yourself",[211,454,456],{"id":455},"step-5-create-a-pipeline-schedule-that-runs-every-three-hours","Step 5: Create a pipeline schedule that runs every three hours",[12,458,320,459,325,462,330],{},[322,460,461],{},"Schedules",[16,463,464],{},[27,465,222],{},[12,467,468],{},[334,469],{"alt":470,"src":471},"Pipeline schedule","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782399257/blog/Content%20Images/using-gitlab-ci-to-build-gitlab-faster/step5.png",[211,473,475],{"id":474},"step-6-let-the-bot-work-for-us","Step 6: Let the bot work for us!",[12,477,478],{},[322,479,480],{},"The CI job:",[12,482,483],{},[334,484],{"alt":485,"src":486},"CI job","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782399258/blog/Content%20Images/using-gitlab-ci-to-build-gitlab-faster/step6-1.png",[12,488,489],{},[322,490,491],{},"The Slack messages:",[12,493,494],{},[334,495],{"alt":496,"src":497},"Slack messages","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782399259/blog/Content%20Images/using-gitlab-ci-to-build-gitlab-faster/step6-2.png",[12,499,500],{},[322,501,502],{},"The merge request:",[12,504,505],{},[334,506],{"alt":507,"src":508},"Merge request","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782399260/blog/Content%20Images/using-gitlab-ci-to-build-gitlab-faster/step6-3.png",[58,510,512],{"id":511},"what-are-the-benefits","What are the benefits?",[12,514,515,516,520,521,524],{},"Since we started automating this process in December 2017, our dear\n",[16,517,518],{},[27,519,372],{}," created no fewer than ",[16,522,523],{},"229 automatic merges",", and we started\nnoticing the benefits immediately:",[173,526,527,530,533],{},[176,528,529],{},"Automating the merge request creation saved developers time and removed a manual\nchore.",[176,531,532],{},"Automatically identifying the developer who introduced a conflict and assigning\nthem to resolve it spread out the workload and reduced bugs caused by improper\nconflict resolution.",[176,534,535],{},"Performing the merge automatically every three hours instead of manually once a\nday led to fewer changes at a time and a reduced number of conflicts.",[12,537,538],{},"The last, perhaps least visible, but most important benefit, is that we reduced\ndeveloper frustration and increased happiness by removing a tedious chore.",[12,540,541,546,547],{},[38,542,545],{"href":543,"rel":544},"https://unsplash.com/photos/w6OniVDCfn0?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText",[],"Photo"," by Max Ostrozhinskiy on ",[38,548,551],{"href":549,"rel":550},"https://unsplash.com/search/photos/build?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText",[],"Unsplash",[553,554,555],"style",{},"html pre.shiki code .sAwPA, html code.shiki .sAwPA{--shiki-default:#6A737D}html pre.shiki code .s7eDp, html code.shiki .s7eDp{--shiki-default:#6F42C1}html pre.shiki code .sYBdl, html code.shiki .sYBdl{--shiki-default:#032F62}html pre.shiki code .sYu0t, html code.shiki .sYu0t{--shiki-default:#005CC5}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}",{"title":84,"searchDepth":97,"depth":97,"links":557},[558,559,570],{"id":60,"depth":97,"text":61},{"id":190,"depth":97,"text":191,"children":560},[561,562,564,566,568,569],{"id":213,"depth":103,"text":214},{"id":313,"depth":103,"text":563},"Step 2: Create a pair of SSH keys and add the public key to the gitlab-ee project",{"id":340,"depth":103,"text":565},"Step 3: Create secret variables in the release-tools project",{"id":393,"depth":103,"text":567},"Step 4: Add a new CI job that runs the upstream_merge Rake task for pipeline schedules only",{"id":455,"depth":103,"text":456},{"id":474,"depth":103,"text":475},{"id":511,"depth":97,"text":512},"engineering","2018-05-02","Here's how we went from a daily manual merge of GitLab Core into GitLab Enterprise to automated merges every three hours.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665440/Blog/Hero%20Images/automate-ce-ee-merges.jpg",{},true,"/en-us/blog/using-gitlab-ci-to-build-gitlab-faster",{"title":5,"description":573,"ogTitle":5,"ogDescription":573,"noIndex":576,"ogImage":577,"ogUrl":582,"ogSiteName":583,"ogType":584,"canonicalUrls":582},"https://about.gitlab.com/blog/using-gitlab-ci-to-build-gitlab-faster","https://about.gitlab.com","article","using-gitlab-ci-to-build-gitlab-faster","en-us/blog/using-gitlab-ci-to-build-gitlab-faster",[588,589],"inside GitLab","CI","BlogPost","kLRiaajyh-FliwG_pcXFP_LWtJlbwipaedQDOFGZF88",{"logo":593,"freeTrial":598,"sales":603,"login":608,"items":613,"search":940,"minimal":970,"duo":989,"switchNav":998,"pricingDeployment":1009},{"config":594},{"href":595,"dataGaName":596,"dataGaLocation":597},"/","gitlab logo","header",{"text":599,"config":600},"Get free trial",{"href":601,"dataGaName":602,"dataGaLocation":597},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":604,"config":605},"Request a demo",{"href":606,"dataGaName":607,"dataGaLocation":597},"/sales/?contact-topic=request-demo","sales",{"text":609,"config":610},"Sign in",{"href":611,"dataGaName":612,"dataGaLocation":597},"https://gitlab.com/users/sign_in/","sign in",[614,643,743,748,862,918],{"text":615,"config":616,"menu":618},"Platform",{"dataNavLevelOne":617},"platform",{"type":619,"columns":620},"cards",[621,627,635],{"title":615,"description":622,"link":623},"The intelligent orchestration platform for DevSecOps",{"text":624,"config":625},"Explore our Platform",{"href":626,"dataGaName":617,"dataGaLocation":597},"/platform/",{"title":628,"description":629,"link":630},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":631,"config":632},"Meet GitLab Duo",{"href":633,"dataGaName":634,"dataGaLocation":597},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":636,"description":637,"link":638},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":639,"config":640},"Learn more",{"href":641,"dataGaName":642,"dataGaLocation":597},"/why-gitlab/","why gitlab",{"text":644,"left":579,"config":645,"menu":647},"Product",{"dataNavLevelOne":646},"solutions",{"type":648,"link":649,"columns":653,"feature":722},"lists",{"text":650,"config":651},"View all Solutions",{"href":652,"dataGaName":646,"dataGaLocation":597},"/solutions/",[654,678,701],{"title":655,"description":656,"link":657,"items":662},"Automation","CI/CD and automation to accelerate deployment",{"config":658},{"icon":659,"href":660,"dataGaName":661,"dataGaLocation":597},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[663,667,670,674],{"text":664,"config":665},"CI/CD",{"href":666,"dataGaLocation":597,"dataGaName":664},"/solutions/continuous-integration/",{"text":628,"config":668},{"href":633,"dataGaLocation":597,"dataGaName":669},"gitlab duo agent platform - product menu",{"text":671,"config":672},"Source Code Management",{"href":673,"dataGaLocation":597,"dataGaName":671},"/solutions/source-code-management/",{"text":675,"config":676},"Automated Software Delivery",{"href":660,"dataGaLocation":597,"dataGaName":677},"Automated software delivery",{"title":679,"description":680,"link":681,"items":686},"Security","Deliver code faster without compromising security",{"config":682},{"href":683,"dataGaName":684,"dataGaLocation":597,"icon":685},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[687,691,696],{"text":688,"config":689},"Application Security Testing",{"href":683,"dataGaName":690,"dataGaLocation":597},"Application security testing",{"text":692,"config":693},"Software Supply Chain Security",{"href":694,"dataGaLocation":597,"dataGaName":695},"/solutions/supply-chain/","Software supply chain security",{"text":697,"config":698},"Software Compliance",{"href":699,"dataGaName":700,"dataGaLocation":597},"/solutions/software-compliance/","software compliance",{"title":702,"link":703,"items":708},"Measurement",{"config":704},{"icon":705,"href":706,"dataGaName":707,"dataGaLocation":597},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[709,713,717],{"text":710,"config":711},"Visibility & Measurement",{"href":706,"dataGaLocation":597,"dataGaName":712},"Visibility and Measurement",{"text":714,"config":715},"Value Stream Management",{"href":716,"dataGaLocation":597,"dataGaName":714},"/solutions/value-stream-management/",{"text":718,"config":719},"Analytics & Insights",{"href":720,"dataGaLocation":597,"dataGaName":721},"/solutions/analytics-and-insights/","Analytics and insights",{"title":723,"type":648,"items":724},"GitLab for",[725,731,737],{"text":726,"config":727},"Enterprise",{"icon":728,"href":729,"dataGaLocation":597,"dataGaName":730},"Building","/enterprise/","enterprise",{"text":732,"config":733},"Small Business",{"icon":734,"href":735,"dataGaLocation":597,"dataGaName":736},"Work","/small-business/","small business",{"text":738,"config":739},"Public Sector",{"icon":740,"href":741,"dataGaLocation":597,"dataGaName":742},"Organization","/solutions/public-sector/","public sector",{"text":744,"config":745},"Pricing",{"href":746,"dataGaName":747,"dataGaLocation":597,"dataNavLevelOne":747},"/pricing/","pricing",{"text":749,"config":750,"menu":752},"Resources",{"dataNavLevelOne":751},"resources",{"type":648,"link":753,"columns":757,"feature":851},{"text":754,"config":755},"View all resources",{"href":756,"dataGaName":751,"dataGaLocation":597},"/resources/",[758,791,818],{"title":759,"items":760},"Getting started",[761,766,771,776,781,786],{"text":762,"config":763},"Install",{"href":764,"dataGaName":765,"dataGaLocation":597},"/install/","install",{"text":767,"config":768},"Quick start guides",{"href":769,"dataGaName":770,"dataGaLocation":597},"/get-started/","quick setup checklists",{"text":772,"config":773},"Learn",{"href":774,"dataGaLocation":597,"dataGaName":775},"https://university.gitlab.com/","learn",{"text":777,"config":778},"Product documentation",{"href":779,"dataGaName":780,"dataGaLocation":597},"https://docs.gitlab.com/","product documentation",{"text":782,"config":783},"Best practice videos",{"href":784,"dataGaName":785,"dataGaLocation":597},"/getting-started-videos/","best practice videos",{"text":787,"config":788},"Integrations",{"href":789,"dataGaName":790,"dataGaLocation":597},"/integrations/","integrations",{"title":792,"items":793},"Discover",[794,799,804,809,813],{"text":795,"config":796},"Customer success stories",{"href":797,"dataGaName":798,"dataGaLocation":597},"/customers/","customer success stories",{"text":800,"config":801},"Blog",{"href":802,"dataGaName":803,"dataGaLocation":597},"/blog/","blog",{"text":805,"config":806},"Demo Hub",{"href":807,"dataGaName":808,"dataGaLocation":597},"/demo-hub/","demo hub",{"text":810,"config":811},"The Source",{"href":812,"dataGaName":803,"dataGaLocation":597},"/the-source/",{"text":814,"config":815},"Remote",{"href":816,"dataGaName":817,"dataGaLocation":597},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":819,"items":820},"Connect",[821,826,831,836,841,846],{"text":822,"config":823},"GitLab Services",{"href":824,"dataGaName":825,"dataGaLocation":597},"/services/","services",{"text":827,"config":828},"Contribute",{"href":829,"dataGaName":830,"dataGaLocation":597},"https://contributors.gitlab.com","contribute",{"text":832,"config":833},"Community",{"href":834,"dataGaName":835,"dataGaLocation":597},"/community/","community",{"text":837,"config":838},"Forum",{"href":839,"dataGaName":840,"dataGaLocation":597},"https://forum.gitlab.com/","forum",{"text":842,"config":843},"Events",{"href":844,"dataGaName":845,"dataGaLocation":597},"/events/","events",{"text":847,"config":848},"Partners",{"href":849,"dataGaName":850,"dataGaLocation":597},"/partners/","partners",{"config":852,"title":855,"text":856,"link":857},{"background":853,"textColor":854},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","What’s new in GitLab","Stay updated with our latest features and improvements.",{"text":858,"config":859},"Read the latest",{"href":860,"dataGaName":861,"dataGaLocation":597},"/whats-new/","whats new",{"text":863,"config":864,"menu":866},"Company",{"dataNavLevelOne":865},"company",{"type":648,"columns":867},[868],{"items":869},[870,875,881,883,888,893,898,903,908,913],{"text":871,"config":872},"About",{"href":873,"dataGaName":874,"dataGaLocation":597},"/company/","about",{"text":876,"config":877,"footerGa":880},"Jobs",{"href":878,"dataGaName":879,"dataGaLocation":597},"/jobs/","jobs",{"dataGaName":879},{"text":842,"config":882},{"href":844,"dataGaName":845,"dataGaLocation":597},{"text":884,"config":885},"Leadership",{"href":886,"dataGaName":887,"dataGaLocation":597},"/company/team/e-group/","leadership",{"text":889,"config":890},"Handbook",{"href":891,"dataGaName":892,"dataGaLocation":597},"https://handbook.gitlab.com/","handbook",{"text":894,"config":895},"Investor relations",{"href":896,"dataGaName":897,"dataGaLocation":597},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":899,"config":900},"Trust Center",{"href":901,"dataGaName":902,"dataGaLocation":597},"/security/","trust center",{"text":904,"config":905},"AI Transparency Center",{"href":906,"dataGaName":907,"dataGaLocation":597},"/ai-transparency-center/","ai transparency center",{"text":909,"config":910},"Newsletter",{"href":911,"dataGaName":912,"dataGaLocation":597},"/company/contact/#contact-forms","newsletter",{"text":914,"config":915},"Press",{"href":916,"dataGaName":917,"dataGaLocation":597},"/press/","press",{"text":919,"config":920,"menu":921},"Contact us",{"dataNavLevelOne":865},{"type":648,"columns":922},[923],{"items":924},[925,930,935],{"text":926,"config":927},"Talk to sales",{"href":928,"dataGaName":929,"dataGaLocation":597},"/sales/","talk to sales",{"text":931,"config":932},"Support portal",{"href":933,"dataGaName":934,"dataGaLocation":597},"https://support.gitlab.com/hc/en-us","support portal",{"text":936,"config":937},"Customer portal",{"href":938,"dataGaName":939,"dataGaLocation":597},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":941,"login":942,"suggestions":948},"Close",{"text":943,"link":944},"To search repositories and projects, login to",{"text":427,"config":945},{"href":611,"dataGaName":946,"dataGaLocation":947},"search login","search",{"text":949,"default":950},"Suggestions",[951,953,957,959,963,967],{"text":628,"config":952},{"href":633,"dataGaName":628,"dataGaLocation":947},{"text":954,"config":955},"Code Suggestions (AI)",{"href":956,"dataGaName":954,"dataGaLocation":947},"/solutions/code-suggestions/",{"text":664,"config":958},{"href":666,"dataGaName":664,"dataGaLocation":947},{"text":960,"config":961},"GitLab on AWS",{"href":962,"dataGaName":960,"dataGaLocation":947},"/partners/technology-partners/aws/",{"text":964,"config":965},"GitLab on Google Cloud",{"href":966,"dataGaName":964,"dataGaLocation":947},"/partners/technology-partners/google-cloud-platform/",{"text":968,"config":969},"Why GitLab?",{"href":641,"dataGaName":968,"dataGaLocation":947},{"freeTrial":971,"mobileIcon":976,"desktopIcon":981,"secondaryButton":984},{"text":972,"config":973},"Start free trial",{"href":974,"dataGaName":602,"dataGaLocation":975},"https://gitlab.com/-/trials/new/","nav",{"altText":977,"config":978},"Gitlab Icon",{"src":979,"dataGaName":980,"dataGaLocation":975},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":977,"config":982},{"src":983,"dataGaName":980,"dataGaLocation":975},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":985,"config":986},"Get Started",{"href":987,"dataGaName":988,"dataGaLocation":975},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":990,"mobileIcon":994,"desktopIcon":996},{"text":991,"config":992},"Learn more about GitLab Duo",{"href":633,"dataGaName":993,"dataGaLocation":975},"gitlab duo",{"altText":977,"config":995},{"src":979,"dataGaName":980,"dataGaLocation":975},{"altText":977,"config":997},{"src":983,"dataGaName":980,"dataGaLocation":975},{"button":999,"mobileIcon":1004,"desktopIcon":1006},{"text":1000,"config":1001},"/switch",{"href":1002,"dataGaName":1003,"dataGaLocation":975},"#contact","switch",{"altText":977,"config":1005},{"src":979,"dataGaName":980,"dataGaLocation":975},{"altText":977,"config":1007},{"src":1008,"dataGaName":980,"dataGaLocation":975},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":1010,"mobileIcon":1015,"desktopIcon":1017},{"text":1011,"config":1012},"Back to pricing",{"href":746,"dataGaName":1013,"dataGaLocation":975,"icon":1014},"back to pricing","GoBack",{"altText":977,"config":1016},{"src":979,"dataGaName":980,"dataGaLocation":975},{"altText":977,"config":1018},{"src":983,"dataGaName":980,"dataGaLocation":975},{"title":1020,"titleMobile":1021,"button":1022,"config":1027},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":639,"config":1023},{"href":1024,"dataGaName":1025,"dataGaLocation":1026},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":1028,"disabled":576},"release",{"data":1030},{"text":1031,"source":1032,"edit":1038,"contribute":1043,"config":1048,"items":1053,"minimal":1262},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":1033,"config":1034},"View page source",{"href":1035,"dataGaName":1036,"dataGaLocation":1037},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":1039,"config":1040},"Edit this page",{"href":1041,"dataGaName":1042,"dataGaLocation":1037},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":1044,"config":1045},"Please contribute",{"href":1046,"dataGaName":1047,"dataGaLocation":1037},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":1049,"facebook":1050,"youtube":1051,"linkedin":1052},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[1054,1100,1154,1198,1230],{"title":744,"links":1055,"subMenu":1070},[1056,1060,1065],{"text":1057,"config":1058},"View plans",{"href":746,"dataGaName":1059,"dataGaLocation":1037},"view plans",{"text":1061,"config":1062},"Why Premium?",{"href":1063,"dataGaName":1064,"dataGaLocation":1037},"/pricing/premium/","why premium",{"text":1066,"config":1067},"Why Ultimate?",{"href":1068,"dataGaName":1069,"dataGaLocation":1037},"/pricing/ultimate/","why ultimate",[1071],{"title":1072,"links":1073},"Contact Us",[1074,1077,1079,1081,1085,1090,1095],{"text":1075,"config":1076},"Contact sales",{"href":928,"dataGaName":607,"dataGaLocation":1037},{"text":931,"config":1078},{"href":933,"dataGaName":934,"dataGaLocation":1037},{"text":936,"config":1080},{"href":938,"dataGaName":939,"dataGaLocation":1037},{"text":1082,"config":1083},"Status",{"href":1084,"dataGaName":265,"dataGaLocation":1037},"https://status.gitlab.com/",{"text":1086,"config":1087},"Terms of use",{"href":1088,"dataGaName":1089,"dataGaLocation":1037},"/terms/","terms of use",{"text":1091,"config":1092},"Privacy statement",{"href":1093,"dataGaName":1094,"dataGaLocation":1037},"/privacy/","privacy statement",{"text":1096,"config":1097},"Cookie preferences",{"dataGaName":1098,"dataGaLocation":1037,"id":1099,"isOneTrustButton":579},"cookie preferences","ot-sdk-btn",{"title":644,"links":1101,"subMenu":1110},[1102,1106],{"text":1103,"config":1104},"DevSecOps platform",{"href":626,"dataGaName":1105,"dataGaLocation":1037},"devsecops platform",{"text":1107,"config":1108},"AI-Assisted Development",{"href":633,"dataGaName":1109,"dataGaLocation":1037},"ai-assisted development",[1111],{"title":1112,"links":1113},"Topics",[1114,1119,1124,1129,1134,1139,1144,1149],{"text":1115,"config":1116},"CICD",{"href":1117,"dataGaName":1118,"dataGaLocation":1037},"/topics/ci-cd/","cicd",{"text":1120,"config":1121},"GitOps",{"href":1122,"dataGaName":1123,"dataGaLocation":1037},"/topics/gitops/","gitops",{"text":1125,"config":1126},"DevOps",{"href":1127,"dataGaName":1128,"dataGaLocation":1037},"/topics/devops/","devops",{"text":1130,"config":1131},"Version Control",{"href":1132,"dataGaName":1133,"dataGaLocation":1037},"/topics/version-control/","version control",{"text":1135,"config":1136},"DevSecOps",{"href":1137,"dataGaName":1138,"dataGaLocation":1037},"/topics/devsecops/","devsecops",{"text":1140,"config":1141},"Cloud Native",{"href":1142,"dataGaName":1143,"dataGaLocation":1037},"/topics/cloud-native/","cloud native",{"text":1145,"config":1146},"AI for Coding",{"href":1147,"dataGaName":1148,"dataGaLocation":1037},"/topics/devops/ai-for-coding/","ai for coding",{"text":1150,"config":1151},"Agentic AI",{"href":1152,"dataGaName":1153,"dataGaLocation":1037},"/topics/agentic-ai/","agentic ai",{"title":1155,"links":1156},"Solutions",[1157,1159,1161,1166,1170,1173,1177,1180,1182,1185,1188,1193],{"text":688,"config":1158},{"href":683,"dataGaName":688,"dataGaLocation":1037},{"text":677,"config":1160},{"href":660,"dataGaName":661,"dataGaLocation":1037},{"text":1162,"config":1163},"Agile development",{"href":1164,"dataGaName":1165,"dataGaLocation":1037},"/solutions/agile-delivery/","agile delivery",{"text":1167,"config":1168},"SCM",{"href":673,"dataGaName":1169,"dataGaLocation":1037},"source code management",{"text":1115,"config":1171},{"href":666,"dataGaName":1172,"dataGaLocation":1037},"continuous integration & delivery",{"text":1174,"config":1175},"Value stream management",{"href":716,"dataGaName":1176,"dataGaLocation":1037},"value stream management",{"text":1120,"config":1178},{"href":1179,"dataGaName":1123,"dataGaLocation":1037},"/solutions/gitops/",{"text":726,"config":1181},{"href":729,"dataGaName":730,"dataGaLocation":1037},{"text":1183,"config":1184},"Small business",{"href":735,"dataGaName":736,"dataGaLocation":1037},{"text":1186,"config":1187},"Public sector",{"href":741,"dataGaName":742,"dataGaLocation":1037},{"text":1189,"config":1190},"Education",{"href":1191,"dataGaName":1192,"dataGaLocation":1037},"/solutions/education/","education",{"text":1194,"config":1195},"Financial services",{"href":1196,"dataGaName":1197,"dataGaLocation":1037},"/solutions/finance/","financial services",{"title":749,"links":1199},[1200,1202,1204,1206,1209,1211,1214,1216,1218,1220,1222,1224,1226,1228],{"text":762,"config":1201},{"href":764,"dataGaName":765,"dataGaLocation":1037},{"text":767,"config":1203},{"href":769,"dataGaName":770,"dataGaLocation":1037},{"text":772,"config":1205},{"href":774,"dataGaName":775,"dataGaLocation":1037},{"text":777,"config":1207},{"href":779,"dataGaName":1208,"dataGaLocation":1037},"docs",{"text":800,"config":1210},{"href":802,"dataGaName":803,"dataGaLocation":1037},{"text":1212,"config":1213},"What's new",{"href":860,"dataGaName":861,"dataGaLocation":1037},{"text":795,"config":1215},{"href":797,"dataGaName":798,"dataGaLocation":1037},{"text":814,"config":1217},{"href":816,"dataGaName":817,"dataGaLocation":1037},{"text":822,"config":1219},{"href":824,"dataGaName":825,"dataGaLocation":1037},{"text":827,"config":1221},{"href":829,"dataGaName":830,"dataGaLocation":1037},{"text":832,"config":1223},{"href":834,"dataGaName":835,"dataGaLocation":1037},{"text":837,"config":1225},{"href":839,"dataGaName":840,"dataGaLocation":1037},{"text":842,"config":1227},{"href":844,"dataGaName":845,"dataGaLocation":1037},{"text":847,"config":1229},{"href":849,"dataGaName":850,"dataGaLocation":1037},{"title":863,"links":1231},[1232,1234,1236,1238,1240,1242,1246,1251,1253,1255,1257],{"text":871,"config":1233},{"href":873,"dataGaName":865,"dataGaLocation":1037},{"text":876,"config":1235},{"href":878,"dataGaName":879,"dataGaLocation":1037},{"text":884,"config":1237},{"href":886,"dataGaName":887,"dataGaLocation":1037},{"text":889,"config":1239},{"href":891,"dataGaName":892,"dataGaLocation":1037},{"text":894,"config":1241},{"href":896,"dataGaName":897,"dataGaLocation":1037},{"text":1243,"config":1244},"Sustainability",{"href":1245,"dataGaName":1243,"dataGaLocation":1037},"/sustainability/",{"text":1247,"config":1248},"Diversity, inclusion and belonging (DIB)",{"href":1249,"dataGaName":1250,"dataGaLocation":1037},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":899,"config":1252},{"href":901,"dataGaName":902,"dataGaLocation":1037},{"text":909,"config":1254},{"href":911,"dataGaName":912,"dataGaLocation":1037},{"text":914,"config":1256},{"href":916,"dataGaName":917,"dataGaLocation":1037},{"text":1258,"config":1259},"Modern Slavery Transparency Statement",{"href":1260,"dataGaName":1261,"dataGaLocation":1037},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1263},[1264,1267,1270],{"text":1265,"config":1266},"Terms",{"href":1088,"dataGaName":1089,"dataGaLocation":1037},{"text":1268,"config":1269},"Cookies",{"dataGaName":1098,"dataGaLocation":1037,"id":1099,"isOneTrustButton":579},{"text":1271,"config":1272},"Privacy",{"href":1093,"dataGaName":1094,"dataGaLocation":1037},[1274],{"id":1275,"title":1276,"body":575,"config":1277,"content":1279,"description":575,"extension":1283,"meta":1284,"navigation":579,"path":1285,"seo":1286,"stem":1287,"__hash__":1288},"blogAuthors/en-us/blog/authors/rmy-coutable.yml","Rmy Coutable",{"template":1278},"BlogAuthor",{"name":7,"config":1280},{"headshot":1281,"ctfId":1282},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667148/Blog/Author%20Headshots/rymai-headshot.jpg","rymai","yml",{},"/en-us/blog/authors/rmy-coutable",{},"en-us/blog/authors/rmy-coutable","QByd_3DfhZrazZboZmAgcqnZw-cx-NnFr3zdxKjl_z4",[1290,1299,1307],{"title":1291,"description":1292,"heroImage":1293,"category":571,"date":1294,"authors":1295,"slug":1298,"externalUrl":575},"Confidential AI for GitLab Self-Hosted","Give developers AI coding agents in GitLab Duo without source code leaving a hardware-encrypted boundary — no GPUs needed.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1773866173/vte9qh8rriznvyclhkes.png","2026-08-06",[1296,1297],"Mathias Ewald","Martin Paloncy, Edgeless Systems","confidential-ai-for-gitlab-self-hosted",{"title":1300,"description":1301,"heroImage":1302,"category":571,"date":1303,"authors":1304,"slug":1306,"externalUrl":575},"Green DevOps: Why carbon measurement belongs in your CI/CD pipeline","CI/CD pipelines have a hidden carbon cost. Here's why measuring it matters, and how you can get started with Eco CI and Carmen in GitLab.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1765809212/noh0mdfn9o94ry9ykura.png","2026-07-09",[1305],"Lysanne Pinto","green-devops-carbon-measurement-cicd-pipeline",{"title":1308,"description":1309,"heroImage":1310,"category":571,"date":1311,"authors":1312,"slug":1314,"externalUrl":575},"How to build CI/CD observability at scale","This practical guide to GitLab pipeline analytics helps self-managed users gain operational insights using Prometheus and Grafana.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1774465167/n5hlvrsrheadeccyr1oz.png","2026-04-28",[1313],"Paul Meresanu","how-to-build-ci-cd-observability-at-scale",{"promotions":1316},[1317,1331,1343,1355],{"id":1318,"categories":1319,"header":1321,"text":1322,"button":1323,"image":1328},"ai-modernization",[1320],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1324,"config":1325},"Get your AI maturity score",{"href":1326,"dataGaName":1327,"dataGaLocation":803},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1329},{"src":1330},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1332,"categories":1333,"header":1335,"text":1322,"button":1336,"image":1340},"devops-modernization",[1334,1138],"product","Are you just managing tools or shipping innovation?",{"text":1337,"config":1338},"Get your DevOps maturity score",{"href":1339,"dataGaName":1327,"dataGaLocation":803},"/assessments/devops-modernization-assessment/",{"config":1341},{"src":1342},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1344,"categories":1345,"header":1347,"text":1322,"button":1348,"image":1352},"security-modernization",[1346],"security","Are you trading speed for security?",{"text":1349,"config":1350},"Get your security maturity score",{"href":1351,"dataGaName":1327,"dataGaLocation":803},"/assessments/security-modernization-assessment/",{"config":1353},{"src":1354},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1356,"paths":1357,"header":1360,"text":1361,"button":1362,"image":1367},"github-azure-migration",[1358,1359],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","Is your team ready for GitHub's Azure move?","GitHub is already rebuilding around Azure. Find out what it means for you.",{"text":1363,"config":1364},"See how GitLab compares to GitHub",{"href":1365,"dataGaName":1366,"dataGaLocation":803},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1368},{"src":1342},{"header":1370,"blurb":1371,"button":1372,"secondaryButton":1377},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1373,"config":1374},"Get your free trial",{"href":1375,"dataGaName":602,"dataGaLocation":1376},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":1075,"config":1378},{"href":928,"dataGaName":607,"dataGaLocation":1376},1786803738877]