rails既存アプリにCircleCIでCI/CDを構築するまでの道程で遭遇したエラー
やりたいこと
既存アプリに対してCircleCIを導入し、CI/CDを構築する
環境
Ruby 2.6.5
rails 6.0
MySQL 5.6
M1チップ搭載MacOS
目次
1.CI構築
発生したエラー
Failure/Error: <%= javascript_pack_tag 'application'%>
ActionView::Template::Error:
Webpacker can't find application in /home/circleci/sample_app/public/packs-test/manifest.json. Possible causes:
1. You want to set webpacker.yml value of compile to true for your environment
unless you are using the `webpack -w` or the webpack-dev-server.
2. webpack has not yet re-run to reflect updates.
3. You have misconfigured Webpacker's config/webpacker.yml file.
4. Your webpack configuration is not creating a manifest.
Your manifest contains:
{
}
circleciが用意するdockerイメージでrub系でyarnないしnodejs系のコマンドを利用したい場合には、-node がついているイメージを利用する必要がある。
docker:
- image: circleci/ruby:2.6.5-node
- run:
name: yarn Install
command: yarn install
2. CD構築
修正後
name: database setup
command: heroku run bundle exec rails db:migrate RAILS_ENV=production -a $HEROKU_APP_NAME
ようやくconfig.ymを書上げ、CircleCIもbuild,test,deployと実行され、いざheroku openすると
heroku logs --tailをしてみると
ActionView::Template::Error (Webpacker can't find application in /fridge_app/public/packs/manifest.json. Possible causes:
1. You want to set webpacker.yml value of compile to true for your environment
unless you are using the `webpack -w` or the webpack-dev-server.
2. webpack has not yet re-run to reflect updates.
3. You have misconfigured Webpacker's config/webpacker.yml file.
4. Your webpack configuration is not creating a manifest.
Your manifest contains:
- run:
name: webpacker compile
command: bundle exec rails webpacker:compile
webpackerを入れてなくて読み込みができていなかった。
3. まとめ
config.ymlの記述の仕方が難しかったです。インデントやタイポなど単純ミスもありまして、調べながら何度も何度も修正しながら作りました。
Author And Source
この問題について(rails既存アプリにCircleCIでCI/CDを構築するまでの道程で遭遇したエラー), 我々は、より多くの情報をここで見つけました https://qiita.com/yunyun_engineer/items/cdd3eae7b4daa85d5257著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .