21
21

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CircleCIのBundle Installを高速化した

Posted at

Bundle Installをキャッシュ化、並列化して高速化した

circleci.yml
dependencies:
  cache_directories:
    - "vendor/bundle"
  override:
    - bundle -j4 --path=vendor/bundle

Before

saicologic_phoenix__112_-_CircleCI.png

After

saicologic_phoenix__114_-_CircleCI.png

12倍高速!(2分24秒から、12秒に短縮)

21
21
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
21
21

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?