Skip to content

Commit

Permalink
Update article
Browse files Browse the repository at this point in the history
  • Loading branch information
r7kamura committed Oct 31, 2023
1 parent 8a615f8 commit f763896
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions articles/2023-10-31-rails-ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ title: RailsアプリのCI高速化

## Dockerイメージの利用

カスタムのDockerイメージを用意することで、テストの起動時間を30秒程度短縮した
カスタムのDockerイメージを用意することで、テストの起動時間が30秒程度短縮された

それまでは、CIの実行のたびに都度aptのパッケージをインストールしたり、細かい設定をしたりといったことをやっていたので、それが無くなった。CIにGitHub Actionsを利用している場合、GitHub Container Registry (以下GHCR) との転送量が無料なので、これが非常に低コストに実現できる。CIにGitHub Actionsを利用する強みの一つ。

Expand Down Expand Up @@ -101,7 +101,7 @@ end

## Gemfileの整理

Railsアプリ起動時に読み込む必要がないgemに `require: false` を付けることで、テスト起動までの時間を数百ms程度短縮した
Railsアプリ起動時に読み込む必要がないgemに `require: false` を付けることで、テスト起動までの時間が数百ms程度短縮された

## spec_helper / rails_helperの整理

Expand Down

0 comments on commit f763896

Please sign in to comment.