CIについて勉強中で、bitriseにdangerを導入して、プルリク時のコメントを自動化使用と試みています。
以下の記事を参考に導入まで行ったのですが、
リンク1
リンク2
do anything with script step のフェーズで 以下のエラーになってしまいます。
bundle install --path vendor/bundle Could not locate Gemfile
スクリプトには以下のように記述しています。
#!/usr/bin/env bash # fail if any commands fails set -e # debug log set -x # この二行が追加分 bundle install --path vendor/bundle bundle exec danger # write your script here echo "Hello World!" # or run a script from your repository, like: # bash ./path/to/script.sh # not just bash, e.g.: # ruby ./path/to/script.rb
上記の記事では、
bundle install --path vendor/bundle bundle install
の二種類ありますが、両方とも上記のエラーになります。
ローカルのプロジェクト配下にはgemfileを作成しており、gem "danger"を追記しています。
CIについてまだ理解が甘く、どこに問題点があるのか想像ができないため質問させていただきます。
確認すべき部分など、わかる方いましたら教えていただけると嬉しいです。
よろしくお願いします。
あなたの回答
tips
プレビュー