[{"data":1,"prerenderedAt":701},["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":463,"Sam Morris":673,"next-steps-ja-jp":686},{"_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":458,"_id":460,"_type":29,"_source":31,"_file":461,"_stem":462,"_extension":34},"/shared/ja-jp/banner","GitLab Duo Agent Platformがパブリックベータ版で利用可能に！",{"text":454,"config":455},"詳しく見る",{"href":456,"dataGaName":457,"dataGaLocation":43},"/gitlab-duo/agent-platform/","duo banner",{"layout":459},"release","content:shared:ja-jp:banner.yml","shared/ja-jp/banner.yml","shared/ja-jp/banner",{"_path":464,"_dir":37,"_draft":6,"_partial":6,"_locale":7,"data":465,"_id":669,"_type":29,"title":670,"_source":31,"_file":671,"_stem":672,"_extension":34},"/shared/ja-jp/main-footer",{"text":466,"source":467,"edit":473,"contribute":478,"config":483,"items":488,"minimal":661},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":468,"config":469},"ページのソースを表示",{"href":470,"dataGaName":471,"dataGaLocation":472},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":474,"config":475},"このページを編集",{"href":476,"dataGaName":477,"dataGaLocation":472},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":479,"config":480},"ご協力をお願いします",{"href":481,"dataGaName":482,"dataGaLocation":472},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":484,"facebook":485,"youtube":486,"linkedin":487},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[489,512,566,599,633],{"title":61,"links":490,"subMenu":495},[491],{"text":492,"config":493},"DevSecOpsプラットフォーム",{"href":70,"dataGaName":494,"dataGaLocation":472},"devsecops platform",[496],{"title":203,"links":497},[498,502,507],{"text":499,"config":500},"プランの表示",{"href":205,"dataGaName":501,"dataGaLocation":472},"view plans",{"text":503,"config":504},"Premiumを選ぶ理由",{"href":505,"dataGaName":506,"dataGaLocation":472},"/ja-jp/pricing/premium/","why premium",{"text":508,"config":509},"Ultimateを選ぶ理由",{"href":510,"dataGaName":511,"dataGaLocation":472},"/ja-jp/pricing/ultimate/","why ultimate",{"title":513,"links":514},"ソリューション",[515,520,523,525,530,535,539,542,545,550,552,554,556,561],{"text":516,"config":517},"デジタルトランスフォーメーション",{"href":518,"dataGaName":519,"dataGaLocation":472},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":149,"config":521},{"href":144,"dataGaName":522,"dataGaLocation":472},"security & compliance",{"text":136,"config":524},{"href":120,"dataGaName":121,"dataGaLocation":472},{"text":526,"config":527},"アジャイル開発",{"href":528,"dataGaName":529,"dataGaLocation":472},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":531,"config":532},"クラウドトランスフォーメーション",{"href":533,"dataGaName":534,"dataGaLocation":472},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":536,"config":537},"SCM",{"href":133,"dataGaName":538,"dataGaLocation":472},"source code management",{"text":23,"config":540},{"href":125,"dataGaName":541,"dataGaLocation":472},"continuous integration & delivery",{"text":175,"config":543},{"href":177,"dataGaName":544,"dataGaLocation":472},"value stream management",{"text":546,"config":547},"GitOps",{"href":548,"dataGaName":549,"dataGaLocation":472},"/ja-jp/solutions/gitops/","gitops",{"text":188,"config":551},{"href":190,"dataGaName":191,"dataGaLocation":472},{"text":193,"config":553},{"href":195,"dataGaName":196,"dataGaLocation":472},{"text":198,"config":555},{"href":200,"dataGaName":201,"dataGaLocation":472},{"text":557,"config":558},"教育",{"href":559,"dataGaName":560,"dataGaLocation":472},"/ja-jp/solutions/education/","education",{"text":562,"config":563},"金融サービス",{"href":564,"dataGaName":565,"dataGaLocation":472},"/ja-jp/solutions/finance/","financial services",{"title":208,"links":567},[568,570,572,574,577,579,583,585,587,589,591,593,595,597],{"text":220,"config":569},{"href":222,"dataGaName":223,"dataGaLocation":472},{"text":225,"config":571},{"href":227,"dataGaName":228,"dataGaLocation":472},{"text":230,"config":573},{"href":232,"dataGaName":233,"dataGaLocation":472},{"text":235,"config":575},{"href":237,"dataGaName":576,"dataGaLocation":472},"docs",{"text":258,"config":578},{"href":260,"dataGaName":5},{"text":580,"config":581},"お客様の成功事例",{"href":582,"dataGaLocation":472},"/customers/",{"text":253,"config":584},{"href":255,"dataGaName":256,"dataGaLocation":472},{"text":262,"config":586},{"href":264,"dataGaName":265,"dataGaLocation":472},{"text":275,"config":588},{"href":277,"dataGaName":278,"dataGaLocation":472},{"text":267,"config":590},{"href":269,"dataGaName":270,"dataGaLocation":472},{"text":280,"config":592},{"href":282,"dataGaName":283,"dataGaLocation":472},{"text":285,"config":594},{"href":287,"dataGaName":288,"dataGaLocation":472},{"text":290,"config":596},{"href":292,"dataGaName":293,"dataGaLocation":472},{"text":295,"config":598},{"href":297,"dataGaName":298,"dataGaLocation":472},{"title":313,"links":600},[601,603,605,607,609,611,613,617,622,624,626,628],{"text":320,"config":602},{"href":322,"dataGaName":315,"dataGaLocation":472},{"text":325,"config":604},{"href":327,"dataGaName":328,"dataGaLocation":472},{"text":333,"config":606},{"href":335,"dataGaName":336,"dataGaLocation":472},{"text":338,"config":608},{"href":340,"dataGaName":341,"dataGaLocation":472},{"text":343,"config":610},{"href":345,"dataGaName":346,"dataGaLocation":472},{"text":348,"config":612},{"href":350,"dataGaName":351,"dataGaLocation":472},{"text":614,"config":615},"Sustainability",{"href":616,"dataGaName":614,"dataGaLocation":472},"/sustainability/",{"text":618,"config":619},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":620,"dataGaName":621,"dataGaLocation":472},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":353,"config":623},{"href":355,"dataGaName":356,"dataGaLocation":472},{"text":363,"config":625},{"href":365,"dataGaName":366,"dataGaLocation":472},{"text":368,"config":627},{"href":370,"dataGaName":371,"dataGaLocation":472},{"text":629,"config":630},"現代奴隷制の透明性に関する声明",{"href":631,"dataGaName":632,"dataGaLocation":472},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":50,"links":634},[635,637,639,641,646,651,656],{"text":50,"config":636},{"href":52,"dataGaName":53,"dataGaLocation":472},{"text":381,"config":638},{"href":383,"dataGaName":384,"dataGaLocation":472},{"text":386,"config":640},{"href":388,"dataGaName":389,"dataGaLocation":472},{"text":642,"config":643},"ステータス",{"href":644,"dataGaName":645,"dataGaLocation":472},"https://status.gitlab.com/","status",{"text":647,"config":648},"利用規約",{"href":649,"dataGaName":650,"dataGaLocation":472},"/terms/","terms of use",{"text":652,"config":653},"プライバシーに関する声明",{"href":654,"dataGaName":655,"dataGaLocation":472},"/ja-jp/privacy/","privacy statement",{"text":657,"config":658},"Cookieの設定",{"dataGaName":659,"dataGaLocation":472,"id":660,"isOneTrustButton":106},"cookie preferences","ot-sdk-btn",{"items":662},[663,665,667],{"text":647,"config":664},{"href":649,"dataGaName":650,"dataGaLocation":472},{"text":652,"config":666},{"href":654,"dataGaName":655,"dataGaLocation":472},{"text":657,"config":668},{"dataGaName":659,"dataGaLocation":472,"id":660,"isOneTrustButton":106},"content:shared:ja-jp:main-footer.yml","Main Footer","shared/ja-jp/main-footer.yml","shared/ja-jp/main-footer",[674],{"_path":675,"_dir":676,"_draft":6,"_partial":6,"_locale":7,"content":677,"config":681,"_id":683,"_type":29,"title":18,"_source":31,"_file":684,"_stem":685,"_extension":34},"/en-us/blog/authors/sam-morris","authors",{"name":18,"config":678},{"headshot":679,"ctfId":680},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660148/Blog/Author%20Headshots/sam_morris.png","6JTrhUIqSCU30Y9KZOaan8",{"template":682},"BlogAuthor","content:en-us:blog:authors:sam-morris.yml","en-us/blog/authors/sam-morris.yml","en-us/blog/authors/sam-morris",{"_path":687,"_dir":37,"_draft":6,"_partial":6,"_locale":7,"header":688,"eyebrow":689,"blurb":690,"button":691,"secondaryButton":695,"_id":697,"_type":29,"title":698,"_source":31,"_file":699,"_stem":700,"_extension":34},"/shared/ja-jp/next-steps","より優れたソフトウェアをより速く提供","フォーチュン100企業の50%以上がGitLabを信頼","インテリジェントなDevSecOpsプラットフォームで\n\n\nチームの可能性を広げましょう。\n",{"text":45,"config":692},{"href":693,"dataGaName":48,"dataGaLocation":694},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":50,"config":696},{"href":52,"dataGaName":53,"dataGaLocation":694},"content:shared:ja-jp:next-steps.yml","Next Steps","shared/ja-jp/next-steps.yml","shared/ja-jp/next-steps",1754424561688]