並び順

ブックマーク数

期間指定

  • から
  • まで

201 - 204 件 / 204件

新着順 人気順

CIの検索結果201 - 204 件 / 204件

  • Rerun failed tests - CircleCI

    Use the rerun failed tests feature to only rerun a subset of tests instead of rerunning the entire test suite when a transient test failure arises. When you select rerun failed tests (see image below), a new workflow is triggered where only a subset of tests are rerun, instead of rerunning the entire test suite when a transient test failure arises. Historically, when a testing job in a workflow ha

      Rerun failed tests - CircleCI
    • [Product Launch] ARM + Docker - Generally Available

      The ability to use CircleCI’s Docker executor on ARM instances. Usage: version: 2.1 jobs: arm_example: docker: - image: cimg/base:2023.06 resource_class: arm.medium steps: - run: echo "hello, world" Remote Docker: version: 2.1 jobs: build: docker: - image: cimg/base:2023.06 resource_class: arm.medium steps: - setup_remote_docker Supported Resource Classes & Prices Non-Remote Docker ARM: arm.medium

        [Product Launch] ARM + Docker - Generally Available
      • CIコスト下げたい、テスト実行時間減らしたい時のアイデアまとめ - ストロングゼロは睡眠薬

        友人にcircle ci 料金下げる。または、rspec実行時間減らした時にやるべきことを聞かれたのでまとめておく Railsプロダクト前提です。 テストしない (野蛮だけどアイデアの一つとしてね....) 不要なコードとテストを削除 並列化 完了時間は実行時間の長いテストに引きずられるので実行時間が均一にする(並列化した後) bundle config使ってdevelopment groupライブラリをinstallさせない (メモリも少なくなります) bundle install や yarn installを別jobで動かしコンテナイメージ作成。テスト実行jobでコンテナfetch draft prだったらcircleci実行しない。open prだけci回す skip ci 活用する resource_class調整 不安定なテストを直す(リトライしている場合) defaultブラ

          CIコスト下げたい、テスト実行時間減らしたい時のアイデアまとめ - ストロングゼロは睡眠薬
        • UnityプロジェクトのGitHub Actions実行を高速化する事例紹介 | QualiArtsエンジニアブログ

          はじめに 株式会社QualiArtsの篠木です。 Unityエンジニアとして中途入社し、現在は開発推進室という主にゲーム開発のための基盤を開発する組織に所属しています。 この記事ではGitHub Actionsのself-hosted runner環境で、Unityを使用したActionsの高速化を行なった事例を紹介します。 GitHub Actionsやself-hosted runnerに関しては、UnityプロジェクトにおけるGitHub Actions活用 を読んで頂くと理解が深まると思います。 ※この記事内に出てくる処理はMac PC上で動作する事を想定しています 大まかな仕組み Unityを使用したActionsで共通で時間が掛かる部分がLibraryの生成になります。 このLibraryの生成をActions間で共有する事で、最小限の時間でLibraryの生成を行えるようにし

            UnityプロジェクトのGitHub Actions実行を高速化する事例紹介 | QualiArtsエンジニアブログ