JenkinsCIは初めてです。リモートのJenkinsにRVMをインストールし、シェルの下で実行します。
#!/bin/bash -x
source ~/.bashrc
rvm use 1.9.3@rails-3.2.3
次のエラーが発生します。
+ source /var/lib/jenkins/.bashrc
++ PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/var/lib/jenkins/.rvm/bin:/var/lib/jenkins/.rvm/bin
+ rvm use 1.9.3@rails-3.2.3
RVM is not a function, selecting rubies with 'rvm use ...' will not work.
You need to change your terminal settings to allow shell login.
Please visit https://rvm.io/workflow/screen/ for example.
どういう意味ですか?わからない。私を助けてください。
更新:以下のスクリプトを試しましたが、それでもエラーが発生します:
#!/bin/bash -x
source /home/zeck/.bashrc
[[ -s ".rvmrc" ]] && source .rvmrc
export RAILS_ENV=test
bundle install
エラー:
/tmp/hudson457106939700368111.sh: line 5: bundle: command not found
Build step 'Execute shell' marked build as failure
Finished: FAILURE
Jenkinsビルドシェルは、RVM、gemset、およびgemを検出できません。私は何をすべきか?
更新2:したがって、jenkinsはルビーを検出できません。
+ ruby -v
/tmp/hudson2505951775163045158.sh: line 5: ruby: command not found
Build step 'Execute shell' marked build as failure
Finished: FAILUR
私はjenkinsプラグを使用しておらず、[ビルド]->[シェルの実行]セクションからスクリプトを実行しています。