1
0

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.

bitbucket-pipelinesでbundlerがエラーを出す

1
Posted at

※原因はわかっていません

あるリポジトリにpushして発動するbitbucket-pipelinesではpassして、またあるリポジトリではfailする状態。

以下に、現状の(無理やり)解決する方法を記述。

image: ruby

pipelines:
  default:
    - step:
        name: run rspec
        script:
          - gem install bundler -v 1.17.1
          - gem install gemspec
          - bundle _1.17.1_ install # gem install bundler で指定したバージョンをbundleコマンドの引数にする
          - rspec

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?