我将我的项目推送到gitlab来测试git ci,但它构建失败了

时间:2016-09-20 13:11:38

标签: git gitlab gitlab-ci-runner

这些是我的错误信息

Running with gitlab-ci-multi-runner 1.5.3 (fb49c47)
Using Shell executor...
Running on luckyxmobiledeMac-mini-2.local...
Fetching changes...
HEAD is now at e56d7ac Update README.md
Checking out e56d7ace as master...
bash: line 4: shell_session_update: command not found
ERROR: Build failed: exit status 127

这些是我的.gitlab-ci.yml:=

的内容

    stages:
      - build   
    build_project:
      stage: build  

      script:  
        - xcodebuild clean -project ProjectName.xcodeproj -scheme SchemeName | xcpretty  
        - xcodebuild test -project ProjectName.xcodeproj -scheme SchemeName -destination 'platform=iOS Simulator,name=iPhone 6s,OS=9.2' | xcpretty -s
      tags:  
        - ios_9-2  
        - osx_10-11

1 个答案:

答案 0 :(得分:5)

基于this question on Super User,这似乎是服务器上rvm包的问题。

您可以阅读该问题和答案,以获得问题的完整说明,但他们的解决方案是将rvm更新为1.26.11或更高版本。

要更新到最新的稳定版本,请执行以下操作:

rvm get stable