This is my error information.
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
This is the content of my .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
source share