[{"data":1,"prerenderedAt":700},["ShallowReactive",2],{"/ja-jp/blog/building-a-gitlab-ci-cd-pipeline-for-a-monorepo-the-easy-way/":3,"navigation-ja-jp":35,"banner-ja-jp":450,"footer-ja-jp":462,"Sam Morris":672,"next-steps-ja-jp":685},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":16,"config":25,"_id":28,"_type":29,"title":30,"_source":31,"_file":32,"_stem":33,"_extension":34},"/ja-jp/blog/building-a-gitlab-ci-cd-pipeline-for-a-monorepo-the-easy-way","blog",false,"",{"title":9,"description":10,"ogTitle":9,"ogDescription":10,"noIndex":6,"ogImage":11,"ogUrl":12,"ogSiteName":13,"ogType":14,"canonicalUrls":12,"schema":15},"モノレポ用のGitLab CI/CDパイプラインを簡単に構築する方法","単一のリポジトリで複数のアプリケーションをホストするモノレポ用に、GitLab CI/CDパイプラインを作成する方法についてご紹介します。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660151/Blog/Hero%20Images/blog-image-template-1800x945__26_.png","https://about.gitlab.com/blog/building-a-gitlab-ci-cd-pipeline-for-a-monorepo-the-easy-way","https://about.gitlab.com","article","\n                        {\n        \"@context\": \"https://schema.org\",\n        \"@type\": \"Article\",\n        \"headline\": \"モノレポ用のGitLab CI/CDパイプラインを簡単に構築する方法\",\n        \"author\": [{\"@type\":\"Person\",\"name\":\"Sam Morris\"}],\n        \"datePublished\": \"2024-07-30\",\n      }",{"title":9,"description":10,"authors":17,"heroImage":11,"date":19,"body":20,"category":21,"tags":22},[18],"Sam Morris","2024-07-30","モノレポを使用すると、単一のリポジトリで複数のアプリケーションのコードをホストできます。GitLabでこれを実現しようとすると、プロジェクト内の各ディレクトリに異なるアプリケーションのソースコードを配置することになります。この方法だとコードの保存場所をバージョン管理できるものの、GitLabの[CI/CD](https://about.gitlab.com/ja-jp/topics/ci-cd/)パイプライン機能を最大限に活用するのは困難でした。しかしながら、新たな方法が登場しました！\n\n## モノレポにおけるCI/CDの理想的な実例\n\n通常、リポジトリには複数のアプリケーションのコードが格納されているため、複数のパイプライン設定が必要となります。たとえば、.NETアプリケーションとSpringアプリケーションがあるプロジェクトの場合、アプリケーションごとに異なるビルドジョブとテストジョブを実施している可能性があります。この場合、パイプラインを完全に切り離し、特定のアプリケーションのソースコードの変更が発生した場合のみ、各パイプラインを実行するのが理想的です。\n\nこのようなプロセスを技術的に実現するには、特定のディレクトリの変更に基づいて特定のYAMLファイルをインクルードする、プロジェクトレベルのパイプライン設定ファイル`.gitlab-ci.yml`を用意します。`.gitlab-ci.yml`パイプラインは、コードに加えられた変更に基づき、適切なパイプラインをトリガーするコントロールプレーンとして機能します。\n\n## 従来のアプローチ\n\nGitLab 16.4より前のバージョンでは、プロジェクト内のディレクトリまたはファイルへの変更に基づいてYAMLファイルをインクルードすることはできませんでした。ただし、回避策を使えばこの機能を実現することは可能でした。\n\nこれからご紹介するモノレポプロジェクトの例では、異なるアプリケーション用に2つのディレクトリがあるとします。それぞれJavaアプリ用の`java`ディレクトリとPythonアプリ用の`python`ディレクトリがあります。それぞれのディレクトリには、各アプリをビルドするためのアプリケーション固有のYAMLファイルが含まれています。シンプルにプロジェクトのパイプラインファイルに両アプリケーションのパイプラインファイルをインクルードし、それらのファイルで直接ロジック処理を行います。\n\n`.gitlab-ci.yml`：\n\n```\nstages:\n  - build\n  - test\n  - deploy\n\ntop-level-job:\n  stage: build\n  script:\n    - echo \"Hello world...\"\n\ninclude:\n  - local: '/java/j.gitlab-ci.yml'\n  - local: '/python/py.gitlab-ci.yml'\n\n```\n\nアプリケーション固有の各パイプラインファイルで「.java-common」もしくは「.python-common」という名前の非表示ジョブを作成します。これらのジョブは対応するアプリのディレクトリに変更が加えられた場合にのみ実行されます。デフォルトでは[非表示ジョブ](https://docs.gitlab.com/ee/ci/jobs/#hide-jobs)は実行されず、通常は特定のジョブ設定を再利用するために使用されます。各パイプラインは、非表示ジョブを拡張して変更がないか監視するファイルを定めたルールを継承してから、パイプラインジョブを開始します。\n\n`j.gitlab-ci.yml`：\n\n```\nstages:\n  - build\n  - test\n  - deploy\n\n.java-common:\n  rules:\n    - changes:\n      - '../java/*'\n\njava-build-job:\n  extends: .java-common\n  stage: build\n  script:\n    - echo \"Javaのビルド\"\n\njava-test-job:\n  extends: .java-common\n  stage: test\n  script:\n    - echo \"Javaのテスト\"\n\n```\n\n`py.gitlab-ci.yml`：\n\n```\nstages:\n  - build\n  - test\n  - deploy\n\n.python-common:\n  rules:\n    - changes:\n      - '../python/*'\n\npython-build-job:\n  extends: .python-common\n  stage: build\n  script:\n    - echo \"Pythonのビルド\"\n\npython-test-job:\n  extends: .python-common\n  stage: test\n  script:\n    - echo \"Pythonのテスト\"\n\n```\n\nこの方法にはいくつかのデメリットがあります。たとえば、確実にルールに準拠するために、YAMLファイル内の他のジョブ用にそれぞれジョブを拡張しなければならないため、多くの冗長なコードが発生し、ヒューマンエラーが起きやすくなります。さらに拡張されたジョブでは重複するキーは持てないため、各ジョブにおいて独自の`rules`ロジックを定義できません。定義しようとした場合、キーの競合が発生し、[キーの値はマージされません](https://docs.gitlab.com/ee/ci/yaml/index.html#extends)。\n\n結果として、`java/`が更新されると、j.gitlab-ci.ymlジョブを含むパイプラインが実行され、`python/`が更新されると、py.gitlab-ci.ymlジョブを含むパイプラインが実行されます。\n\n## 新たなアプローチ：パイプラインファイルを条件付きでインクルードする\n\n\u003C!-- 空白行 -->\n\u003Cfigure class=\"video_container\">\n  \u003Ciframe src=\"https://www.youtube.com/embed/6phvk8jioAo?si=y6ztZODvUtM-cHmZ\" frameborder=\"0\" allowfullscreen=\"true\"> \u003C/iframe>\n\u003C/figure>\n\u003C!-- 空白行 -->\n\nGitLab 16.4では、[パイプライン向けに`rules:changes`を含む`include`](https://docs.gitlab.com/ee/ci/yaml/includes.html#include-with-ruleschanges)が導入されました。それまでは`include`に`rules:if`を使用することはできたものの、`rules:changes`は使用できませんでした。これは非常に強力なアップデートです。これにより、プロジェクトのパイプライン設定で`include`キーワードを使用するだけで、モノレポのルールを定義できるようになりました。\n\n新たな`.gitlab-ci.yml`：\n\n```\nstages:\n  - build\n  - test\n\ntop-level-job:\n  stage: build\n  script:\n    - echo \"Hello world...\"\n\ninclude:\n  - local: '/java/j.gitlab-ci.yml'\n    rules:\n      - changes:\n        - 'java/*'\n  - local: '/python/py.gitlab-ci.yml'\n    rules:\n      - changes:\n        - 'python/*'\n\n```\n\nその後、各アプリケーションのYAMLファイルにおいて非表示ジョブを何度も拡張せずに済むため、アプリケーションコードのビルドとテストだけに集中できます。これによって、より柔軟にジョブを定義できるようになり、エンジニアによるコードの書き直し作業が軽減します。\n\n新たな`j.gitlab-ci.yml`：\n\n```\nstages:\n  - build\n  - test\n  - deploy\n\njava-build-job:\n  stage: build\n  script:\n    - echo \"Javaのビルド\"\n\njava-test-job:\n  stage: test\n  script:\n    - echo \"Javaのテスト\"\n\n```\n\n新たな`py.gitlab-ci.yml`：\n```\nstages:\n  - build\n  - test\n  - deploy\n\npython-build-job:\n  stage: build\n  script:\n    - echo \"Pythonのビルド\"\n\npython-test-job:\n  stage: test\n  script:\n    - echo \"Pythonのテスト\"\n\n```\n\n上記の設定により、JavaとPythonのディレクトリがそれぞれ変更された場合にのみ、JavaまたはPythonのジョブをインクルードするという同じタスクを実行できます。実装時に考慮すべき点は、[`changes`を使用すると、ジョブが予期せぬタイミングで実行される可能性がある](https://docs.gitlab.com/ee/ci/jobs/job_troubleshooting.html#jobs-or-pipelines-run-unexpectedly-when-using-changes)ということです。新しいブランチやタグをGitLabにプッシュすると、changesルールは必ず「true」と評価されるため、`rules:changes`の定義内容にかかわらず、ブランチへの最初のプッシュ時に、含まれるすべてのジョブが実行されます。こういった事態がなるべく起こらないようにするために、まずはフィーチャーブランチを作成してからマージリクエストを開いて開発を始めることをおすすめします。ブランチの作成時に最初にプッシュすることで、すべてのジョブが強制的に実行されるためです。\n\n総括すると、モノレポはGitLabおよびCI/CDと組み合わせて、戦略的に利用できる手法です。新たな`rules:changes`機能を含む`include`キーワードの登場により、GitLab CIにおいてモノレポを使う際に適用できる優れたベストプラクティスができました。モノレポの利用をお考えの場合は、ぜひGitlab Ultimateの無料トライアルをご利用ください。\n\n## CI/CDに関するその他のリソース\n\n* [GitLabでモノレポを管理するためのヒント5選](https://about.gitlab.com/blog/tips-for-managing-monorepos-in-gitlab/)\n* [CI/CDについて素早く学ぶ方法](https://about.gitlab.com/blog/how-to-learn-ci-cd-fast/)","engineering",[23,24],"CI/CD","tutorial",{"slug":26,"featured":6,"template":27},"building-a-gitlab-ci-cd-pipeline-for-a-monorepo-the-easy-way","BlogPost","content:ja-jp:blog:building-a-gitlab-ci-cd-pipeline-for-a-monorepo-the-easy-way.yml","yaml","Building A Gitlab Ci Cd Pipeline For A Monorepo The Easy Way","content","ja-jp/blog/building-a-gitlab-ci-cd-pipeline-for-a-monorepo-the-easy-way.yml","ja-jp/blog/building-a-gitlab-ci-cd-pipeline-for-a-monorepo-the-easy-way","yml",{"_path":36,"_dir":37,"_draft":6,"_partial":6,"_locale":7,"data":38,"_id":446,"_type":29,"title":447,"_source":31,"_file":448,"_stem":449,"_extension":34},"/shared/ja-jp/main-navigation","ja-jp",{"logo":39,"freeTrial":44,"sales":49,"login":54,"items":59,"search":390,"minimal":424,"duo":437},{"config":40},{"href":41,"dataGaName":42,"dataGaLocation":43},"/ja-jp/","gitlab logo","header",{"text":45,"config":46},"無料トライアルを開始",{"href":47,"dataGaName":48,"dataGaLocation":43},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":50,"config":51},"お問い合わせ",{"href":52,"dataGaName":53,"dataGaLocation":43},"/ja-jp/sales/","sales",{"text":55,"config":56},"サインイン",{"href":57,"dataGaName":58,"dataGaLocation":43},"https://gitlab.com/users/sign_in/","sign in",[60,104,202,207,312,372],{"text":61,"config":62,"cards":64,"footer":87},"プラットフォーム",{"dataNavLevelOne":63},"platform",[65,71,79],{"title":61,"description":66,"link":67},"最も包括的かつAIで強化されたDevSecOpsプラットフォーム",{"text":68,"config":69},"プラットフォームを詳しく見る",{"href":70,"dataGaName":63,"dataGaLocation":43},"/ja-jp/platform/",{"title":72,"description":73,"link":74},"GitLab Duo（AI）","開発のすべてのステージでAIを活用し、ソフトウェアをより迅速にビルド",{"text":75,"config":76},"GitLab Duoのご紹介",{"href":77,"dataGaName":78,"dataGaLocation":43},"/ja-jp/gitlab-duo/","gitlab duo ai",{"title":80,"description":81,"link":82},"GitLabが選ばれる理由","GitLabが大企業に選ばれる理由10選",{"text":83,"config":84},"詳細はこちら",{"href":85,"dataGaName":86,"dataGaLocation":43},"/ja-jp/why-gitlab/","why gitlab",{"title":88,"items":89},"利用を開始：",[90,95,100],{"text":91,"config":92},"プラットフォームエンジニアリング",{"href":93,"dataGaName":94,"dataGaLocation":43},"/ja-jp/solutions/platform-engineering/","platform engineering",{"text":96,"config":97},"開発者の経験",{"href":98,"dataGaName":99,"dataGaLocation":43},"/ja-jp/developer-experience/","Developer experience",{"text":101,"config":102},"MLOps",{"href":103,"dataGaName":101,"dataGaLocation":43},"/ja-jp/topics/devops/the-role-of-ai-in-devops/",{"text":105,"left":106,"config":107,"link":109,"lists":113,"footer":184},"製品",true,{"dataNavLevelOne":108},"solutions",{"text":110,"config":111},"すべてのソリューションを表示",{"href":112,"dataGaName":108,"dataGaLocation":43},"/ja-jp/solutions/",[114,139,162],{"title":115,"description":116,"link":117,"items":122},"自動化","CI/CDと自動化でデプロイを加速",{"config":118},{"icon":119,"href":120,"dataGaName":121,"dataGaLocation":43},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[123,126,130,135],{"text":23,"config":124},{"href":125,"dataGaLocation":43,"dataGaName":23},"/ja-jp/solutions/continuous-integration/",{"text":127,"config":128},"AIアシストによる開発",{"href":77,"dataGaLocation":43,"dataGaName":129},"AI assisted development",{"text":131,"config":132},"ソースコード管理",{"href":133,"dataGaLocation":43,"dataGaName":134},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":136,"config":137},"自動化されたソフトウェアデリバリー",{"href":120,"dataGaLocation":43,"dataGaName":138},"Automated software delivery",{"title":140,"description":141,"link":142,"items":147},"セキュリティ","セキュリティを損なうことなくコードをより迅速に完成",{"config":143},{"href":144,"dataGaName":145,"dataGaLocation":43,"icon":146},"/ja-jp/solutions/security-compliance/","security and compliance","ShieldCheckLight",[148,152,157],{"text":149,"config":150},"セキュリティとコンプライアンス",{"href":144,"dataGaLocation":43,"dataGaName":151},"Security & Compliance",{"text":153,"config":154},"ソフトウェアサプライチェーンの安全性",{"href":155,"dataGaLocation":43,"dataGaName":156},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":158,"config":159},"コンプライアンスとガバナンス",{"href":160,"dataGaLocation":43,"dataGaName":161},"/ja-jp/solutions/continuous-software-compliance/","Compliance and governance",{"title":163,"link":164,"items":169},"測定",{"config":165},{"icon":166,"href":167,"dataGaName":168,"dataGaLocation":43},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[170,174,179],{"text":171,"config":172},"可視性と測定",{"href":167,"dataGaLocation":43,"dataGaName":173},"Visibility and Measurement",{"text":175,"config":176},"バリューストリーム管理",{"href":177,"dataGaLocation":43,"dataGaName":178},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":180,"config":181},"分析とインサイト",{"href":182,"dataGaLocation":43,"dataGaName":183},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":185,"items":186},"GitLabが活躍する場所",[187,192,197],{"text":188,"config":189},"Enterprise",{"href":190,"dataGaLocation":43,"dataGaName":191},"/ja-jp/enterprise/","enterprise",{"text":193,"config":194},"スモールビジネス",{"href":195,"dataGaLocation":43,"dataGaName":196},"/ja-jp/small-business/","small business",{"text":198,"config":199},"公共機関",{"href":200,"dataGaLocation":43,"dataGaName":201},"/ja-jp/solutions/public-sector/","public sector",{"text":203,"config":204},"価格",{"href":205,"dataGaName":206,"dataGaLocation":43,"dataNavLevelOne":206},"/ja-jp/pricing/","pricing",{"text":208,"config":209,"link":211,"lists":215,"feature":299},"関連リソース",{"dataNavLevelOne":210},"resources",{"text":212,"config":213},"すべてのリソースを表示",{"href":214,"dataGaName":210,"dataGaLocation":43},"/ja-jp/resources/",[216,249,271],{"title":217,"items":218},"はじめに",[219,224,229,234,239,244],{"text":220,"config":221},"インストール",{"href":222,"dataGaName":223,"dataGaLocation":43},"/ja-jp/install/","install",{"text":225,"config":226},"クイックスタートガイド",{"href":227,"dataGaName":228,"dataGaLocation":43},"/ja-jp/get-started/","quick setup checklists",{"text":230,"config":231},"学ぶ",{"href":232,"dataGaLocation":43,"dataGaName":233},"https://university.gitlab.com/","learn",{"text":235,"config":236},"製品ドキュメント",{"href":237,"dataGaName":238,"dataGaLocation":43},"https://docs.gitlab.com/","product documentation",{"text":240,"config":241},"ベストプラクティスビデオ",{"href":242,"dataGaName":243,"dataGaLocation":43},"/ja-jp/getting-started-videos/","best practice videos",{"text":245,"config":246},"インテグレーション",{"href":247,"dataGaName":248,"dataGaLocation":43},"/ja-jp/integrations/","integrations",{"title":250,"items":251},"検索する",[252,257,261,266],{"text":253,"config":254},"お客様成功事例",{"href":255,"dataGaName":256,"dataGaLocation":43},"/ja-jp/customers/","customer success stories",{"text":258,"config":259},"ブログ",{"href":260,"dataGaName":5,"dataGaLocation":43},"/ja-jp/blog/",{"text":262,"config":263},"リモート",{"href":264,"dataGaName":265,"dataGaLocation":43},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":267,"config":268},"TeamOps",{"href":269,"dataGaName":270,"dataGaLocation":43},"/ja-jp/teamops/","teamops",{"title":272,"items":273},"つなげる",[274,279,284,289,294],{"text":275,"config":276},"GitLabサービス",{"href":277,"dataGaName":278,"dataGaLocation":43},"/ja-jp/services/","services",{"text":280,"config":281},"コミュニティ",{"href":282,"dataGaName":283,"dataGaLocation":43},"/community/","community",{"text":285,"config":286},"フォーラム",{"href":287,"dataGaName":288,"dataGaLocation":43},"https://forum.gitlab.com/","forum",{"text":290,"config":291},"イベント",{"href":292,"dataGaName":293,"dataGaLocation":43},"/events/","events",{"text":295,"config":296},"パートナー",{"href":297,"dataGaName":298,"dataGaLocation":43},"/ja-jp/partners/","partners",{"backgroundColor":300,"textColor":301,"text":302,"image":303,"link":307},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":304,"config":305},"ソースプロモカード",{"src":306},"/images/navigation/the-source-promo-card.svg",{"text":308,"config":309},"最新情報を読む",{"href":310,"dataGaName":311,"dataGaLocation":43},"/ja-jp/the-source/","the source",{"text":313,"config":314,"lists":316},"Company",{"dataNavLevelOne":315},"company",[317],{"items":318},[319,324,330,332,337,342,347,352,357,362,367],{"text":320,"config":321},"GitLabについて",{"href":322,"dataGaName":323,"dataGaLocation":43},"/ja-jp/company/","about",{"text":325,"config":326,"footerGa":329},"採用情報",{"href":327,"dataGaName":328,"dataGaLocation":43},"/jobs/","jobs",{"dataGaName":328},{"text":290,"config":331},{"href":292,"dataGaName":293,"dataGaLocation":43},{"text":333,"config":334},"経営陣",{"href":335,"dataGaName":336,"dataGaLocation":43},"/company/team/e-group/","leadership",{"text":338,"config":339},"チーム",{"href":340,"dataGaName":341,"dataGaLocation":43},"/company/team/","team",{"text":343,"config":344},"ハンドブック",{"href":345,"dataGaName":346,"dataGaLocation":43},"https://handbook.gitlab.com/","handbook",{"text":348,"config":349},"投資家向け情報",{"href":350,"dataGaName":351,"dataGaLocation":43},"https://ir.gitlab.com/","investor relations",{"text":353,"config":354},"トラストセンター",{"href":355,"dataGaName":356,"dataGaLocation":43},"/ja-jp/security/","trust center",{"text":358,"config":359},"AI Transparency Center",{"href":360,"dataGaName":361,"dataGaLocation":43},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":363,"config":364},"ニュースレター",{"href":365,"dataGaName":366,"dataGaLocation":43},"/company/contact/","newsletter",{"text":368,"config":369},"プレス",{"href":370,"dataGaName":371,"dataGaLocation":43},"/press/","press",{"text":50,"config":373,"lists":374},{"dataNavLevelOne":315},[375],{"items":376},[377,380,385],{"text":50,"config":378},{"href":52,"dataGaName":379,"dataGaLocation":43},"talk to sales",{"text":381,"config":382},"サポートを受ける",{"href":383,"dataGaName":384,"dataGaLocation":43},"/support/","get help",{"text":386,"config":387},"カスタマーポータル",{"href":388,"dataGaName":389,"dataGaLocation":43},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":391,"login":392,"suggestions":399},"閉じる",{"text":393,"link":394},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":395,"config":396},"GitLab.com",{"href":57,"dataGaName":397,"dataGaLocation":398},"search login","search",{"text":400,"default":401},"提案",[402,405,410,412,416,420],{"text":72,"config":403},{"href":77,"dataGaName":404,"dataGaLocation":398},"GitLab Duo (AI)",{"text":406,"config":407},"コード提案（AI）",{"href":408,"dataGaName":409,"dataGaLocation":398},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":23,"config":411},{"href":125,"dataGaName":23,"dataGaLocation":398},{"text":413,"config":414},"GitLab on AWS",{"href":415,"dataGaName":413,"dataGaLocation":398},"/ja-jp/partners/technology-partners/aws/",{"text":417,"config":418},"GitLab on Google Cloud",{"href":419,"dataGaName":417,"dataGaLocation":398},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":421,"config":422},"GitLabを選ぶ理由",{"href":85,"dataGaName":423,"dataGaLocation":398},"Why GitLab?",{"freeTrial":425,"mobileIcon":429,"desktopIcon":434},{"text":45,"config":426},{"href":427,"dataGaName":48,"dataGaLocation":428},"https://gitlab.com/-/trials/new/","nav",{"altText":430,"config":431},"GitLabアイコン",{"src":432,"dataGaName":433,"dataGaLocation":428},"/images/brand/gitlab-logo-tanuki.svg","gitlab icon",{"altText":430,"config":435},{"src":436,"dataGaName":433,"dataGaLocation":428},"/images/brand/gitlab-logo-type.svg",{"freeTrial":438,"mobileIcon":442,"desktopIcon":444},{"text":439,"config":440},"GitLab Duoの詳細について",{"href":77,"dataGaName":441,"dataGaLocation":428},"gitlab duo",{"altText":430,"config":443},{"src":432,"dataGaName":433,"dataGaLocation":428},{"altText":430,"config":445},{"src":436,"dataGaName":433,"dataGaLocation":428},"content:shared:ja-jp:main-navigation.yml","Main Navigation","shared/ja-jp/main-navigation.yml","shared/ja-jp/main-navigation",{"_path":451,"_dir":37,"_draft":6,"_partial":6,"_locale":7,"title":452,"button":453,"config":457,"_id":459,"_type":29,"_source":31,"_file":460,"_stem":461,"_extension":34},"/shared/ja-jp/banner","GitLab Duo Agent Platformがパブリックベータ版で利用可能になりました！",{"text":83,"config":454},{"href":455,"dataGaName":456,"dataGaLocation":43},"/ja-jp/gitlab-duo/agent-platform/","duo banner",{"layout":458},"release","content:shared:ja-jp:banner.yml","shared/ja-jp/banner.yml","shared/ja-jp/banner",{"_path":463,"_dir":37,"_draft":6,"_partial":6,"_locale":7,"data":464,"_id":668,"_type":29,"title":669,"_source":31,"_file":670,"_stem":671,"_extension":34},"/shared/ja-jp/main-footer",{"text":465,"source":466,"edit":472,"contribute":477,"config":482,"items":487,"minimal":660},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":467,"config":468},"ページのソースを表示",{"href":469,"dataGaName":470,"dataGaLocation":471},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":473,"config":474},"このページを編集",{"href":475,"dataGaName":476,"dataGaLocation":471},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":478,"config":479},"ご協力をお願いします",{"href":480,"dataGaName":481,"dataGaLocation":471},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":483,"facebook":484,"youtube":485,"linkedin":486},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[488,511,565,598,632],{"title":61,"links":489,"subMenu":494},[490],{"text":491,"config":492},"DevSecOpsプラットフォーム",{"href":70,"dataGaName":493,"dataGaLocation":471},"devsecops platform",[495],{"title":203,"links":496},[497,501,506],{"text":498,"config":499},"プランの表示",{"href":205,"dataGaName":500,"dataGaLocation":471},"view plans",{"text":502,"config":503},"Premiumを選ぶ理由",{"href":504,"dataGaName":505,"dataGaLocation":471},"/ja-jp/pricing/premium/","why premium",{"text":507,"config":508},"Ultimateを選ぶ理由",{"href":509,"dataGaName":510,"dataGaLocation":471},"/ja-jp/pricing/ultimate/","why ultimate",{"title":512,"links":513},"ソリューション",[514,519,522,524,529,534,538,541,544,549,551,553,555,560],{"text":515,"config":516},"デジタルトランスフォーメーション",{"href":517,"dataGaName":518,"dataGaLocation":471},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":149,"config":520},{"href":144,"dataGaName":521,"dataGaLocation":471},"security & compliance",{"text":136,"config":523},{"href":120,"dataGaName":121,"dataGaLocation":471},{"text":525,"config":526},"アジャイル開発",{"href":527,"dataGaName":528,"dataGaLocation":471},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":530,"config":531},"クラウドトランスフォーメーション",{"href":532,"dataGaName":533,"dataGaLocation":471},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":535,"config":536},"SCM",{"href":133,"dataGaName":537,"dataGaLocation":471},"source code management",{"text":23,"config":539},{"href":125,"dataGaName":540,"dataGaLocation":471},"continuous integration & delivery",{"text":175,"config":542},{"href":177,"dataGaName":543,"dataGaLocation":471},"value stream management",{"text":545,"config":546},"GitOps",{"href":547,"dataGaName":548,"dataGaLocation":471},"/ja-jp/solutions/gitops/","gitops",{"text":188,"config":550},{"href":190,"dataGaName":191,"dataGaLocation":471},{"text":193,"config":552},{"href":195,"dataGaName":196,"dataGaLocation":471},{"text":198,"config":554},{"href":200,"dataGaName":201,"dataGaLocation":471},{"text":556,"config":557},"教育",{"href":558,"dataGaName":559,"dataGaLocation":471},"/ja-jp/solutions/education/","education",{"text":561,"config":562},"金融サービス",{"href":563,"dataGaName":564,"dataGaLocation":471},"/ja-jp/solutions/finance/","financial services",{"title":208,"links":566},[567,569,571,573,576,578,582,584,586,588,590,592,594,596],{"text":220,"config":568},{"href":222,"dataGaName":223,"dataGaLocation":471},{"text":225,"config":570},{"href":227,"dataGaName":228,"dataGaLocation":471},{"text":230,"config":572},{"href":232,"dataGaName":233,"dataGaLocation":471},{"text":235,"config":574},{"href":237,"dataGaName":575,"dataGaLocation":471},"docs",{"text":258,"config":577},{"href":260,"dataGaName":5},{"text":579,"config":580},"お客様の成功事例",{"href":581,"dataGaLocation":471},"/customers/",{"text":253,"config":583},{"href":255,"dataGaName":256,"dataGaLocation":471},{"text":262,"config":585},{"href":264,"dataGaName":265,"dataGaLocation":471},{"text":275,"config":587},{"href":277,"dataGaName":278,"dataGaLocation":471},{"text":267,"config":589},{"href":269,"dataGaName":270,"dataGaLocation":471},{"text":280,"config":591},{"href":282,"dataGaName":283,"dataGaLocation":471},{"text":285,"config":593},{"href":287,"dataGaName":288,"dataGaLocation":471},{"text":290,"config":595},{"href":292,"dataGaName":293,"dataGaLocation":471},{"text":295,"config":597},{"href":297,"dataGaName":298,"dataGaLocation":471},{"title":313,"links":599},[600,602,604,606,608,610,612,616,621,623,625,627],{"text":320,"config":601},{"href":322,"dataGaName":315,"dataGaLocation":471},{"text":325,"config":603},{"href":327,"dataGaName":328,"dataGaLocation":471},{"text":333,"config":605},{"href":335,"dataGaName":336,"dataGaLocation":471},{"text":338,"config":607},{"href":340,"dataGaName":341,"dataGaLocation":471},{"text":343,"config":609},{"href":345,"dataGaName":346,"dataGaLocation":471},{"text":348,"config":611},{"href":350,"dataGaName":351,"dataGaLocation":471},{"text":613,"config":614},"Sustainability",{"href":615,"dataGaName":613,"dataGaLocation":471},"/sustainability/",{"text":617,"config":618},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":619,"dataGaName":620,"dataGaLocation":471},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":353,"config":622},{"href":355,"dataGaName":356,"dataGaLocation":471},{"text":363,"config":624},{"href":365,"dataGaName":366,"dataGaLocation":471},{"text":368,"config":626},{"href":370,"dataGaName":371,"dataGaLocation":471},{"text":628,"config":629},"現代奴隷制の透明性に関する声明",{"href":630,"dataGaName":631,"dataGaLocation":471},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":50,"links":633},[634,636,638,640,645,650,655],{"text":50,"config":635},{"href":52,"dataGaName":53,"dataGaLocation":471},{"text":381,"config":637},{"href":383,"dataGaName":384,"dataGaLocation":471},{"text":386,"config":639},{"href":388,"dataGaName":389,"dataGaLocation":471},{"text":641,"config":642},"ステータス",{"href":643,"dataGaName":644,"dataGaLocation":471},"https://status.gitlab.com/","status",{"text":646,"config":647},"利用規約",{"href":648,"dataGaName":649,"dataGaLocation":471},"/terms/","terms of use",{"text":651,"config":652},"プライバシーに関する声明",{"href":653,"dataGaName":654,"dataGaLocation":471},"/ja-jp/privacy/","privacy statement",{"text":656,"config":657},"Cookieの設定",{"dataGaName":658,"dataGaLocation":471,"id":659,"isOneTrustButton":106},"cookie preferences","ot-sdk-btn",{"items":661},[662,664,666],{"text":646,"config":663},{"href":648,"dataGaName":649,"dataGaLocation":471},{"text":651,"config":665},{"href":653,"dataGaName":654,"dataGaLocation":471},{"text":656,"config":667},{"dataGaName":658,"dataGaLocation":471,"id":659,"isOneTrustButton":106},"content:shared:ja-jp:main-footer.yml","Main Footer","shared/ja-jp/main-footer.yml","shared/ja-jp/main-footer",[673],{"_path":674,"_dir":675,"_draft":6,"_partial":6,"_locale":7,"content":676,"config":680,"_id":682,"_type":29,"title":18,"_source":31,"_file":683,"_stem":684,"_extension":34},"/en-us/blog/authors/sam-morris","authors",{"name":18,"config":677},{"headshot":678,"ctfId":679},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660148/Blog/Author%20Headshots/sam_morris.png","6JTrhUIqSCU30Y9KZOaan8",{"template":681},"BlogAuthor","content:en-us:blog:authors:sam-morris.yml","en-us/blog/authors/sam-morris.yml","en-us/blog/authors/sam-morris",{"_path":686,"_dir":37,"_draft":6,"_partial":6,"_locale":7,"header":687,"eyebrow":688,"blurb":689,"button":690,"secondaryButton":694,"_id":696,"_type":29,"title":697,"_source":31,"_file":698,"_stem":699,"_extension":34},"/shared/ja-jp/next-steps","より優れたソフトウェアをより速く提供","フォーチュン100企業の50%以上がGitLabを信頼","インテリジェントなDevSecOpsプラットフォームで\n\n\nチームの可能性を広げましょう。\n",{"text":45,"config":691},{"href":692,"dataGaName":48,"dataGaLocation":693},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":50,"config":695},{"href":52,"dataGaName":53,"dataGaLocation":693},"content:shared:ja-jp:next-steps.yml","Next Steps","shared/ja-jp/next-steps.yml","shared/ja-jp/next-steps",1753207429565]