[{"data":1,"prerenderedAt":989},["ShallowReactive",2],{"/blog/inside-the-improved-ci-logs-management-experience-for-multi-line-commands":3,"navigation-en-us":201,"banner-en-us":628,"footer-en-us":638,"blog-post-authors-en-us-Romuald Atchadé":883,"blog-related-posts-en-us-inside-the-improved-ci-logs-management-experience-for-multi-line-commands":899,"blog-promotions-en-us":925,"next-steps-en-us":979},{"id":4,"title":5,"authors":6,"body":8,"category":178,"date":179,"description":180,"extension":181,"externalUrl":182,"faq":182,"featured":183,"heroImage":184,"meta":185,"navigation":183,"path":186,"seo":187,"slug":192,"stem":193,"tags":194,"template":199,"updatedDate":182,"__hash__":200},"blogPosts/en-us/blog/inside-the-improved-ci-logs-management-experience-for-multi-line-commands.md","Inside the improved CI logs management experience for multi-line commands",[7],"Romuald Atchadé",{"type":9,"value":10,"toc":171},"minimark",[11,15,20,23,34,37,44,47,53,56,59,65,69,72,78,81,84,87,93,105,111,114,120,123,129,133,142,146,153,165],[12,13,14],"p",{},"Improving the GitLab CI/CD log experience for jobs with multi-line commands has been a long-requested feature. With the latest release of GitLab and GitLab Runner, it's now easier to work with the log section for jobs with multi-line commands. In this post, we will describe the experience with the new feature, show you how to enable the new log output in your pipelines, and discuss key points regarding CI/CD script execution and log output in various shells, such as Bash and Powershell.",[16,17,19],"h2",{"id":18},"overview-of-multi-line-commands","Overview of multi-line commands",[12,21,22],{},"First, it’s helpful to describe what we mean by a CI job with multi-line commands. In GitLab CI the script keyword is used to specify commands to execute for a CI job. In the example below, the build-job has a single command, a basic echo statement, to execute in the script block.",[24,25,31],"pre",{"className":26,"code":28,"language":29,"meta":30},[27],"language-text","## A pipeline with a single line command in the script block for the build-job\n\nbuild-job:\n  stage: build\n  script:\n    - echo \"this is the script to run for the build job\"\n\n","text","",[32,33,28],"code",{"__ignoreMap":30},[12,35,36],{},"If you were to run this pipeline, then the log output in the UI would display as follows:\nLine 17 - GitLab CI automatically generates a log entry for the command that you specify in the script block.\nLine 18 - This is the output of the command that was executed.",[12,38,39],{},[40,41],"img",{"alt":42,"src":43},"Ci log management - image 2","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750099524/Blog/Content%20Images/Blog/Content%20Images/image5_aHR0cHM6_1750099524655.png",[12,45,46],{},"Now as you can imagine, the script that you define in the script block will likely be more complex than the example provided and could very well span multiple lines in the CI/CD pipeline file.",[24,48,51],{"className":49,"code":50,"language":29,"meta":30},[27],"## A pipeline with a multi-line command in the script block for the build-job\n\nbuild-job:\n  stage: build\n  script:\n       - |\n         echo \"this is a multi-line command\"  # a simple echo statement\n         ls  \n\n",[32,52,50],{"__ignoreMap":30},[12,54,55],{},"If you were to run this pipeline, then the log output in the UI would display as follows:",[12,57,58],{},"Line 17 - As in the previous example, GitLab CI automatically generates a log entry for the command that you specify in the script block. You will notice that line 17 only includes the first command in the script block. This makes it more difficult to debug an issue with script execution as you will need to refer back to the source pipeline file to see exactly what script was executed.",[12,60,61],{},[40,62],{"alt":63,"src":64},"CI log management - image 3","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750099525/Blog/Content%20Images/Blog/Content%20Images/image6_aHR0cHM6_1750099524656.png",[16,66,68],{"id":67},"so-whats-new","So what’s new?",[12,70,71],{},"Starting in GitLab 16.7 and GitLab Runner 16.7, you can now enable a feature flag titled FF_SCRIPT_SECTIONS, which will add a collapsible output section to the CI job log for multi-line command script blocks. This feature flag changes the log output for CI jobs that execute within the Bash shell.",[12,73,74],{},[40,75],{"alt":76,"src":77},"CI log management - image 4","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750099525/Blog/Content%20Images/Blog/Content%20Images/image3_aHR0cHM6_1750099524658.png",[12,79,80],{},"Line 17: Unlike the previous examples, the first thing you will notice in the screenshot above is that by default the log entry for the multi-line command is collapsed by default.",[12,82,83],{},"Single-line commands do not display in a collapsible element.",[12,85,86],{},"For multi-line scripts the multi-line command is now a collapsible element, so now, when you uncollapse the log entry for line 17, then the log will display all of the commands that were executed in the script block.",[12,88,89],{},[40,90],{"alt":91,"src":92},"CI log management - image 1","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750099525/Blog/Content%20Images/Blog/Content%20Images/image2_aHR0cHM6_1750099524659.png",[12,94,95,96,104],{},"There is also the ",[97,98,101],"a",{"href":99,"rel":100},"https://docs.gitlab.com/ci/jobs/#custom-collapsible-sections",[],[32,102,103],{},"custom collapsible section"," feature, which in combination with this new multi-command output capability does provide you additional flexibility for displaying log output in the UI. Here is how you can use the two features to change the log output.",[24,106,109],{"className":107,"code":108,"language":29,"meta":30},[27],"## A pipeline with a multi-line command in the script block for the build-job\n\nvariables:\n  FF_PRINT_POD_EVENTS: \"true\"\n  FF_USE_POWERSHELL_PATH_RESOLVER: \"true\"\n  FF_SCRIPT_SECTIONS: \"true\"\n\ncollapsible_job_multiple:\n  stage: build\n  script:\n    - |\n      echo \"{\n        'test': 'data',\n        'test2': 'data2',\n      }\"\n    - |\n      echo \"{\n        'test': 'data',\n        'test2': 'data2',\n      }\"\n    - echo -e \"\\033[0Ksection_start:`date +%s`:my_first_section\\r\\033[0KHeader of the 1st collapsible section\"\n    - echo 'this line should be hidden when collapsed'\n    - |\n      echo \"{\n        'test': 'data',\n        'test2': 'data2',\n      }\"\n    - echo -e \"\\033[0Ksection_start:`date +%s`:second_section\\r\\033[0KHeader of the 2nd collapsible section\"\n    - echo 'this line should be hidden when collapsed'\n    - echo -e \"\\033[0Ksection_end:`date +%s`:second_section\\r\\033[0K\"\n    - echo -e \"\\033[0Ksection_end:`date +%s`:my_first_section\\r\\033[0K\"\n\n",[32,110,108],{"__ignoreMap":30},[12,112,113],{},"If you were to run this pipeline with the FF_SCRIPT_SECTIONS feature flag set to false, then the log output would be as depicted in the following screenshot.",[12,115,116],{},[40,117],{"alt":118,"src":119},"CI log management - image 5","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750099524/Blog/Content%20Images/Blog/Content%20Images/image1_aHR0cHM6_1750099524661.png",[12,121,122],{},"But, if you were to run this pipeline with the FF_SCRIPT_SECTIONS feature flag set to true, then the log output would be as depicted in the following screenshot.",[12,124,125],{},[40,126],{"alt":127,"src":128},"CI log management - image 6","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750099525/Blog/Content%20Images/Blog/Content%20Images/image4_aHR0cHM6_1750099524663.png",[16,130,132],{"id":131},"what-about-other-shells","What about other shells?",[12,134,135,136,141],{},"As of the 16.7 release, the collapsible output section in the CI job log for multi-line command script blocks is only visible for CI/CD jobs that are executed with the Bash shell. CI/CD jobs executed with Powershell is not currently supported. We plan to add this ",[97,137,140],{"href":138,"rel":139},"https://gitlab.com/gitlab-org/gitlab-runner/-/merge_requests/4494",[],"capability"," in a future release.",[16,143,145],{"id":144},"what-are-our-future-plans","What are our future plans?",[12,147,148,149,152],{},"A few features are still needed to improve the CI/CD job log output, and the ",[32,150,151],{},"timestamp"," for each log line is one of them. This addition will add missing features such as command/section duration.",[154,155,156],"blockquote",{},[12,157,158,159,164],{},"To learn more about GitLab CI/CD features, refer to the official ",[97,160,163],{"href":161,"rel":162},"https://docs.gitlab.com/ci/",[],"CI/CD documentation",".",[12,166,167],{},[168,169,170],"em",{},"Disclaimer: This blog contains information related to upcoming products, features, and functionality. It is important to note that the information in this blog post is for informational purposes only. Please do not rely on this information for purchasing or planning purposes. As with all projects, the items mentioned in this blog and linked pages are subject to change or delay. The development, release, and timing of any products, features, or functionality remain at the sole discretion of GitLab.",{"title":30,"searchDepth":172,"depth":172,"links":173},2,[174,175,176,177],{"id":18,"depth":172,"text":19},{"id":67,"depth":172,"text":68},{"id":131,"depth":172,"text":132},{"id":144,"depth":172,"text":145},"engineering","2024-01-25","Reviewing log output for CI/CD jobs with multi-line commands is now easier than ever. Find out why, how to configure your pipelines, and what's ahead.\n\n","md",null,true,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750099499/Blog/Hero%20Images/Blog/Hero%20Images/AdobeStock_639935439_3oqldo5Yt5wPonEJYZOLTM_1750099498739.jpg",{},"/en-us/blog/inside-the-improved-ci-logs-management-experience-for-multi-line-commands",{"title":5,"description":180,"ogTitle":5,"ogDescription":180,"noIndex":188,"ogImage":184,"ogUrl":189,"ogSiteName":190,"ogType":191,"canonicalUrls":189},false,"https://about.gitlab.com/blog/inside-the-improved-ci-logs-management-experience-for-multi-line-commands","https://about.gitlab.com","article","inside-the-improved-ci-logs-management-experience-for-multi-line-commands","en-us/blog/inside-the-improved-ci-logs-management-experience-for-multi-line-commands",[195,196,197,198],"CI","CD","CI/CD","tutorial","BlogPost","dh6trz4GSP7TMdaSny10Vi7idRXz-yWIwTMETtbBaYk",{"logo":202,"freeTrial":207,"sales":212,"login":217,"items":222,"search":548,"minimal":579,"duo":598,"switchNav":607,"pricingDeployment":618},{"config":203},{"href":204,"dataGaName":205,"dataGaLocation":206},"/","gitlab logo","header",{"text":208,"config":209},"Get free trial",{"href":210,"dataGaName":211,"dataGaLocation":206},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":213,"config":214},"Request a demo",{"href":215,"dataGaName":216,"dataGaLocation":206},"/sales/?contact-topic=request-demo","sales",{"text":218,"config":219},"Sign in",{"href":220,"dataGaName":221,"dataGaLocation":206},"https://gitlab.com/users/sign_in/","sign in",[223,252,351,356,470,526],{"text":224,"config":225,"menu":227},"Platform",{"dataNavLevelOne":226},"platform",{"type":228,"columns":229},"cards",[230,236,244],{"title":224,"description":231,"link":232},"The intelligent orchestration platform for DevSecOps",{"text":233,"config":234},"Explore our Platform",{"href":235,"dataGaName":226,"dataGaLocation":206},"/platform/",{"title":237,"description":238,"link":239},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":240,"config":241},"Meet GitLab Duo",{"href":242,"dataGaName":243,"dataGaLocation":206},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":245,"description":246,"link":247},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":248,"config":249},"Learn more",{"href":250,"dataGaName":251,"dataGaLocation":206},"/why-gitlab/","why gitlab",{"text":253,"left":183,"config":254,"menu":256},"Product",{"dataNavLevelOne":255},"solutions",{"type":257,"link":258,"columns":262,"feature":330},"lists",{"text":259,"config":260},"View all Solutions",{"href":261,"dataGaName":255,"dataGaLocation":206},"/solutions/",[263,286,309],{"title":264,"description":265,"link":266,"items":271},"Automation","CI/CD and automation to accelerate deployment",{"config":267},{"icon":268,"href":269,"dataGaName":270,"dataGaLocation":206},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[272,275,278,282],{"text":197,"config":273},{"href":274,"dataGaLocation":206,"dataGaName":197},"/solutions/continuous-integration/",{"text":237,"config":276},{"href":242,"dataGaLocation":206,"dataGaName":277},"gitlab duo agent platform - product menu",{"text":279,"config":280},"Source Code Management",{"href":281,"dataGaLocation":206,"dataGaName":279},"/solutions/source-code-management/",{"text":283,"config":284},"Automated Software Delivery",{"href":269,"dataGaLocation":206,"dataGaName":285},"Automated software delivery",{"title":287,"description":288,"link":289,"items":294},"Security","Deliver code faster without compromising security",{"config":290},{"href":291,"dataGaName":292,"dataGaLocation":206,"icon":293},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[295,299,304],{"text":296,"config":297},"Application Security Testing",{"href":291,"dataGaName":298,"dataGaLocation":206},"Application security testing",{"text":300,"config":301},"Software Supply Chain Security",{"href":302,"dataGaLocation":206,"dataGaName":303},"/solutions/supply-chain/","Software supply chain security",{"text":305,"config":306},"Software Compliance",{"href":307,"dataGaName":308,"dataGaLocation":206},"/solutions/software-compliance/","software compliance",{"title":310,"link":311,"items":316},"Measurement",{"config":312},{"icon":313,"href":314,"dataGaName":315,"dataGaLocation":206},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[317,321,325],{"text":318,"config":319},"Visibility & Measurement",{"href":314,"dataGaLocation":206,"dataGaName":320},"Visibility and Measurement",{"text":322,"config":323},"Value Stream Management",{"href":324,"dataGaLocation":206,"dataGaName":322},"/solutions/value-stream-management/",{"text":326,"config":327},"Analytics & Insights",{"href":328,"dataGaLocation":206,"dataGaName":329},"/solutions/analytics-and-insights/","Analytics and insights",{"title":331,"type":257,"items":332},"GitLab for",[333,339,345],{"text":334,"config":335},"Enterprise",{"icon":336,"href":337,"dataGaLocation":206,"dataGaName":338},"Building","/enterprise/","enterprise",{"text":340,"config":341},"Small Business",{"icon":342,"href":343,"dataGaLocation":206,"dataGaName":344},"Work","/small-business/","small business",{"text":346,"config":347},"Public Sector",{"icon":348,"href":349,"dataGaLocation":206,"dataGaName":350},"Organization","/solutions/public-sector/","public sector",{"text":352,"config":353},"Pricing",{"href":354,"dataGaName":355,"dataGaLocation":206,"dataNavLevelOne":355},"/pricing/","pricing",{"text":357,"config":358,"menu":360},"Resources",{"dataNavLevelOne":359},"resources",{"type":257,"link":361,"columns":365,"feature":459},{"text":362,"config":363},"View all resources",{"href":364,"dataGaName":359,"dataGaLocation":206},"/resources/",[366,399,426],{"title":367,"items":368},"Getting started",[369,374,379,384,389,394],{"text":370,"config":371},"Install",{"href":372,"dataGaName":373,"dataGaLocation":206},"/install/","install",{"text":375,"config":376},"Quick start guides",{"href":377,"dataGaName":378,"dataGaLocation":206},"/get-started/","quick setup checklists",{"text":380,"config":381},"Learn",{"href":382,"dataGaLocation":206,"dataGaName":383},"https://university.gitlab.com/","learn",{"text":385,"config":386},"Product documentation",{"href":387,"dataGaName":388,"dataGaLocation":206},"https://docs.gitlab.com/","product documentation",{"text":390,"config":391},"Best practice videos",{"href":392,"dataGaName":393,"dataGaLocation":206},"/getting-started-videos/","best practice videos",{"text":395,"config":396},"Integrations",{"href":397,"dataGaName":398,"dataGaLocation":206},"/integrations/","integrations",{"title":400,"items":401},"Discover",[402,407,412,417,421],{"text":403,"config":404},"Customer success stories",{"href":405,"dataGaName":406,"dataGaLocation":206},"/customers/","customer success stories",{"text":408,"config":409},"Blog",{"href":410,"dataGaName":411,"dataGaLocation":206},"/blog/","blog",{"text":413,"config":414},"Demo Hub",{"href":415,"dataGaName":416,"dataGaLocation":206},"/demo-hub/","demo hub",{"text":418,"config":419},"The Source",{"href":420,"dataGaName":411,"dataGaLocation":206},"/the-source/",{"text":422,"config":423},"Remote",{"href":424,"dataGaName":425,"dataGaLocation":206},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":427,"items":428},"Connect",[429,434,439,444,449,454],{"text":430,"config":431},"GitLab Services",{"href":432,"dataGaName":433,"dataGaLocation":206},"/services/","services",{"text":435,"config":436},"Contribute",{"href":437,"dataGaName":438,"dataGaLocation":206},"https://contributors.gitlab.com","contribute",{"text":440,"config":441},"Community",{"href":442,"dataGaName":443,"dataGaLocation":206},"/community/","community",{"text":445,"config":446},"Forum",{"href":447,"dataGaName":448,"dataGaLocation":206},"https://forum.gitlab.com/","forum",{"text":450,"config":451},"Events",{"href":452,"dataGaName":453,"dataGaLocation":206},"/events/","events",{"text":455,"config":456},"Partners",{"href":457,"dataGaName":458,"dataGaLocation":206},"/partners/","partners",{"config":460,"title":463,"text":464,"link":465},{"background":461,"textColor":462},"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":466,"config":467},"Read the latest",{"href":468,"dataGaName":469,"dataGaLocation":206},"/whats-new/","whats new",{"text":471,"config":472,"menu":474},"Company",{"dataNavLevelOne":473},"company",{"type":257,"columns":475},[476],{"items":477},[478,483,489,491,496,501,506,511,516,521],{"text":479,"config":480},"About",{"href":481,"dataGaName":482,"dataGaLocation":206},"/company/","about",{"text":484,"config":485,"footerGa":488},"Jobs",{"href":486,"dataGaName":487,"dataGaLocation":206},"/jobs/","jobs",{"dataGaName":487},{"text":450,"config":490},{"href":452,"dataGaName":453,"dataGaLocation":206},{"text":492,"config":493},"Leadership",{"href":494,"dataGaName":495,"dataGaLocation":206},"/company/team/e-group/","leadership",{"text":497,"config":498},"Handbook",{"href":499,"dataGaName":500,"dataGaLocation":206},"https://handbook.gitlab.com/","handbook",{"text":502,"config":503},"Investor relations",{"href":504,"dataGaName":505,"dataGaLocation":206},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":507,"config":508},"Trust Center",{"href":509,"dataGaName":510,"dataGaLocation":206},"/security/","trust center",{"text":512,"config":513},"AI Transparency Center",{"href":514,"dataGaName":515,"dataGaLocation":206},"/ai-transparency-center/","ai transparency center",{"text":517,"config":518},"Newsletter",{"href":519,"dataGaName":520,"dataGaLocation":206},"/company/contact/#contact-forms","newsletter",{"text":522,"config":523},"Press",{"href":524,"dataGaName":525,"dataGaLocation":206},"/press/","press",{"text":527,"config":528,"menu":529},"Contact us",{"dataNavLevelOne":473},{"type":257,"columns":530},[531],{"items":532},[533,538,543],{"text":534,"config":535},"Talk to sales",{"href":536,"dataGaName":537,"dataGaLocation":206},"/sales/","talk to sales",{"text":539,"config":540},"Support portal",{"href":541,"dataGaName":542,"dataGaLocation":206},"https://support.gitlab.com/hc/en-us","support portal",{"text":544,"config":545},"Customer portal",{"href":546,"dataGaName":547,"dataGaLocation":206},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":549,"login":550,"suggestions":557},"Close",{"text":551,"link":552},"To search repositories and projects, login to",{"text":553,"config":554},"gitlab.com",{"href":220,"dataGaName":555,"dataGaLocation":556},"search login","search",{"text":558,"default":559},"Suggestions",[560,562,566,568,572,576],{"text":237,"config":561},{"href":242,"dataGaName":237,"dataGaLocation":556},{"text":563,"config":564},"Code Suggestions (AI)",{"href":565,"dataGaName":563,"dataGaLocation":556},"/solutions/code-suggestions/",{"text":197,"config":567},{"href":274,"dataGaName":197,"dataGaLocation":556},{"text":569,"config":570},"GitLab on AWS",{"href":571,"dataGaName":569,"dataGaLocation":556},"/partners/technology-partners/aws/",{"text":573,"config":574},"GitLab on Google Cloud",{"href":575,"dataGaName":573,"dataGaLocation":556},"/partners/technology-partners/google-cloud-platform/",{"text":577,"config":578},"Why GitLab?",{"href":250,"dataGaName":577,"dataGaLocation":556},{"freeTrial":580,"mobileIcon":585,"desktopIcon":590,"secondaryButton":593},{"text":581,"config":582},"Start free trial",{"href":583,"dataGaName":211,"dataGaLocation":584},"https://gitlab.com/-/trials/new/","nav",{"altText":586,"config":587},"Gitlab Icon",{"src":588,"dataGaName":589,"dataGaLocation":584},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":586,"config":591},{"src":592,"dataGaName":589,"dataGaLocation":584},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":594,"config":595},"Get Started",{"href":596,"dataGaName":597,"dataGaLocation":584},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":599,"mobileIcon":603,"desktopIcon":605},{"text":600,"config":601},"Learn more about GitLab Duo",{"href":242,"dataGaName":602,"dataGaLocation":584},"gitlab duo",{"altText":586,"config":604},{"src":588,"dataGaName":589,"dataGaLocation":584},{"altText":586,"config":606},{"src":592,"dataGaName":589,"dataGaLocation":584},{"button":608,"mobileIcon":613,"desktopIcon":615},{"text":609,"config":610},"/switch",{"href":611,"dataGaName":612,"dataGaLocation":584},"#contact","switch",{"altText":586,"config":614},{"src":588,"dataGaName":589,"dataGaLocation":584},{"altText":586,"config":616},{"src":617,"dataGaName":589,"dataGaLocation":584},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":619,"mobileIcon":624,"desktopIcon":626},{"text":620,"config":621},"Back to pricing",{"href":354,"dataGaName":622,"dataGaLocation":584,"icon":623},"back to pricing","GoBack",{"altText":586,"config":625},{"src":588,"dataGaName":589,"dataGaLocation":584},{"altText":586,"config":627},{"src":592,"dataGaName":589,"dataGaLocation":584},{"title":629,"titleMobile":630,"button":631,"config":636},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":248,"config":632},{"href":633,"dataGaName":634,"dataGaLocation":635},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":637,"disabled":188},"release",{"data":639},{"text":640,"source":641,"edit":647,"contribute":652,"config":657,"items":662,"minimal":872},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":642,"config":643},"View page source",{"href":644,"dataGaName":645,"dataGaLocation":646},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":648,"config":649},"Edit this page",{"href":650,"dataGaName":651,"dataGaLocation":646},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":653,"config":654},"Please contribute",{"href":655,"dataGaName":656,"dataGaLocation":646},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":658,"facebook":659,"youtube":660,"linkedin":661},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[663,710,764,808,840],{"title":352,"links":664,"subMenu":679},[665,669,674],{"text":666,"config":667},"View plans",{"href":354,"dataGaName":668,"dataGaLocation":646},"view plans",{"text":670,"config":671},"Why Premium?",{"href":672,"dataGaName":673,"dataGaLocation":646},"/pricing/premium/","why premium",{"text":675,"config":676},"Why Ultimate?",{"href":677,"dataGaName":678,"dataGaLocation":646},"/pricing/ultimate/","why ultimate",[680],{"title":681,"links":682},"Contact Us",[683,686,688,690,695,700,705],{"text":684,"config":685},"Contact sales",{"href":536,"dataGaName":216,"dataGaLocation":646},{"text":539,"config":687},{"href":541,"dataGaName":542,"dataGaLocation":646},{"text":544,"config":689},{"href":546,"dataGaName":547,"dataGaLocation":646},{"text":691,"config":692},"Status",{"href":693,"dataGaName":694,"dataGaLocation":646},"https://status.gitlab.com/","status",{"text":696,"config":697},"Terms of use",{"href":698,"dataGaName":699,"dataGaLocation":646},"/terms/","terms of use",{"text":701,"config":702},"Privacy statement",{"href":703,"dataGaName":704,"dataGaLocation":646},"/privacy/","privacy statement",{"text":706,"config":707},"Cookie preferences",{"dataGaName":708,"dataGaLocation":646,"id":709,"isOneTrustButton":183},"cookie preferences","ot-sdk-btn",{"title":253,"links":711,"subMenu":720},[712,716],{"text":713,"config":714},"DevSecOps platform",{"href":235,"dataGaName":715,"dataGaLocation":646},"devsecops platform",{"text":717,"config":718},"AI-Assisted Development",{"href":242,"dataGaName":719,"dataGaLocation":646},"ai-assisted development",[721],{"title":722,"links":723},"Topics",[724,729,734,739,744,749,754,759],{"text":725,"config":726},"CICD",{"href":727,"dataGaName":728,"dataGaLocation":646},"/topics/ci-cd/","cicd",{"text":730,"config":731},"GitOps",{"href":732,"dataGaName":733,"dataGaLocation":646},"/topics/gitops/","gitops",{"text":735,"config":736},"DevOps",{"href":737,"dataGaName":738,"dataGaLocation":646},"/topics/devops/","devops",{"text":740,"config":741},"Version Control",{"href":742,"dataGaName":743,"dataGaLocation":646},"/topics/version-control/","version control",{"text":745,"config":746},"DevSecOps",{"href":747,"dataGaName":748,"dataGaLocation":646},"/topics/devsecops/","devsecops",{"text":750,"config":751},"Cloud Native",{"href":752,"dataGaName":753,"dataGaLocation":646},"/topics/cloud-native/","cloud native",{"text":755,"config":756},"AI for Coding",{"href":757,"dataGaName":758,"dataGaLocation":646},"/topics/devops/ai-for-coding/","ai for coding",{"text":760,"config":761},"Agentic AI",{"href":762,"dataGaName":763,"dataGaLocation":646},"/topics/agentic-ai/","agentic ai",{"title":765,"links":766},"Solutions",[767,769,771,776,780,783,787,790,792,795,798,803],{"text":296,"config":768},{"href":291,"dataGaName":296,"dataGaLocation":646},{"text":285,"config":770},{"href":269,"dataGaName":270,"dataGaLocation":646},{"text":772,"config":773},"Agile development",{"href":774,"dataGaName":775,"dataGaLocation":646},"/solutions/agile-delivery/","agile delivery",{"text":777,"config":778},"SCM",{"href":281,"dataGaName":779,"dataGaLocation":646},"source code management",{"text":725,"config":781},{"href":274,"dataGaName":782,"dataGaLocation":646},"continuous integration & delivery",{"text":784,"config":785},"Value stream management",{"href":324,"dataGaName":786,"dataGaLocation":646},"value stream management",{"text":730,"config":788},{"href":789,"dataGaName":733,"dataGaLocation":646},"/solutions/gitops/",{"text":334,"config":791},{"href":337,"dataGaName":338,"dataGaLocation":646},{"text":793,"config":794},"Small business",{"href":343,"dataGaName":344,"dataGaLocation":646},{"text":796,"config":797},"Public sector",{"href":349,"dataGaName":350,"dataGaLocation":646},{"text":799,"config":800},"Education",{"href":801,"dataGaName":802,"dataGaLocation":646},"/solutions/education/","education",{"text":804,"config":805},"Financial services",{"href":806,"dataGaName":807,"dataGaLocation":646},"/solutions/finance/","financial services",{"title":357,"links":809},[810,812,814,816,819,821,824,826,828,830,832,834,836,838],{"text":370,"config":811},{"href":372,"dataGaName":373,"dataGaLocation":646},{"text":375,"config":813},{"href":377,"dataGaName":378,"dataGaLocation":646},{"text":380,"config":815},{"href":382,"dataGaName":383,"dataGaLocation":646},{"text":385,"config":817},{"href":387,"dataGaName":818,"dataGaLocation":646},"docs",{"text":408,"config":820},{"href":410,"dataGaName":411,"dataGaLocation":646},{"text":822,"config":823},"What's new",{"href":468,"dataGaName":469,"dataGaLocation":646},{"text":403,"config":825},{"href":405,"dataGaName":406,"dataGaLocation":646},{"text":422,"config":827},{"href":424,"dataGaName":425,"dataGaLocation":646},{"text":430,"config":829},{"href":432,"dataGaName":433,"dataGaLocation":646},{"text":435,"config":831},{"href":437,"dataGaName":438,"dataGaLocation":646},{"text":440,"config":833},{"href":442,"dataGaName":443,"dataGaLocation":646},{"text":445,"config":835},{"href":447,"dataGaName":448,"dataGaLocation":646},{"text":450,"config":837},{"href":452,"dataGaName":453,"dataGaLocation":646},{"text":455,"config":839},{"href":457,"dataGaName":458,"dataGaLocation":646},{"title":471,"links":841},[842,844,846,848,850,852,856,861,863,865,867],{"text":479,"config":843},{"href":481,"dataGaName":473,"dataGaLocation":646},{"text":484,"config":845},{"href":486,"dataGaName":487,"dataGaLocation":646},{"text":492,"config":847},{"href":494,"dataGaName":495,"dataGaLocation":646},{"text":497,"config":849},{"href":499,"dataGaName":500,"dataGaLocation":646},{"text":502,"config":851},{"href":504,"dataGaName":505,"dataGaLocation":646},{"text":853,"config":854},"Sustainability",{"href":855,"dataGaName":853,"dataGaLocation":646},"/sustainability/",{"text":857,"config":858},"Diversity, inclusion and belonging (DIB)",{"href":859,"dataGaName":860,"dataGaLocation":646},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":507,"config":862},{"href":509,"dataGaName":510,"dataGaLocation":646},{"text":517,"config":864},{"href":519,"dataGaName":520,"dataGaLocation":646},{"text":522,"config":866},{"href":524,"dataGaName":525,"dataGaLocation":646},{"text":868,"config":869},"Modern Slavery Transparency Statement",{"href":870,"dataGaName":871,"dataGaLocation":646},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":873},[874,877,880],{"text":875,"config":876},"Terms",{"href":698,"dataGaName":699,"dataGaLocation":646},{"text":878,"config":879},"Cookies",{"dataGaName":708,"dataGaLocation":646,"id":709,"isOneTrustButton":183},{"text":881,"config":882},"Privacy",{"href":703,"dataGaName":704,"dataGaLocation":646},[884],{"id":885,"title":886,"body":182,"config":887,"content":889,"description":182,"extension":893,"meta":894,"navigation":183,"path":895,"seo":896,"stem":897,"__hash__":898},"blogAuthors/en-us/blog/authors/romuald-atchad.yml","Romuald Atchad",{"template":888},"BlogAuthor",{"name":7,"config":890},{"headshot":891,"ctfId":892},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749683323/Blog/Author%20Headshots/romuald_headshot.png","UlDEnaT6wqUdPZMmBKpE2","yml",{},"/en-us/blog/authors/romuald-atchad",{},"en-us/blog/authors/romuald-atchad","J0jVgJN0JdqBqbcNfhozEgit1B1KuPOtJH4Bws1GhyM",[900,909,917],{"title":901,"description":902,"heroImage":903,"category":178,"date":904,"authors":905,"slug":908,"externalUrl":182},"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",[906,907],"Mathias Ewald","Martin Paloncy, Edgeless Systems","confidential-ai-for-gitlab-self-hosted",{"title":910,"description":911,"heroImage":912,"category":178,"date":913,"authors":914,"slug":916,"externalUrl":182},"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",[915],"Lysanne Pinto","green-devops-carbon-measurement-cicd-pipeline",{"title":918,"description":919,"heroImage":920,"category":178,"date":921,"authors":922,"slug":924,"externalUrl":182},"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",[923],"Paul Meresanu","how-to-build-ci-cd-observability-at-scale",{"promotions":926},[927,941,953,965],{"id":928,"categories":929,"header":931,"text":932,"button":933,"image":938},"ai-modernization",[930],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":934,"config":935},"Get your AI maturity score",{"href":936,"dataGaName":937,"dataGaLocation":411},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":939},{"src":940},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":942,"categories":943,"header":945,"text":932,"button":946,"image":950},"devops-modernization",[944,748],"product","Are you just managing tools or shipping innovation?",{"text":947,"config":948},"Get your DevOps maturity score",{"href":949,"dataGaName":937,"dataGaLocation":411},"/assessments/devops-modernization-assessment/",{"config":951},{"src":952},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":954,"categories":955,"header":957,"text":932,"button":958,"image":962},"security-modernization",[956],"security","Are you trading speed for security?",{"text":959,"config":960},"Get your security maturity score",{"href":961,"dataGaName":937,"dataGaLocation":411},"/assessments/security-modernization-assessment/",{"config":963},{"src":964},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":966,"paths":967,"header":970,"text":971,"button":972,"image":977},"github-azure-migration",[968,969],"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":973,"config":974},"See how GitLab compares to GitHub",{"href":975,"dataGaName":976,"dataGaLocation":411},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":978},{"src":952},{"header":980,"blurb":981,"button":982,"secondaryButton":987},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":983,"config":984},"Get your free trial",{"href":985,"dataGaName":211,"dataGaLocation":986},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":684,"config":988},{"href":536,"dataGaName":216,"dataGaLocation":986},1786803752612]