Skip to content

Instantly share code, notes, and snippets.

@amyhametov
Last active July 11, 2019 13:27
Show Gist options
  • Save amyhametov/b8aa204d762403183ddecbfd2bfe3944 to your computer and use it in GitHub Desktop.
Save amyhametov/b8aa204d762403183ddecbfd2bfe3944 to your computer and use it in GitHub Desktop.
Install and run gitlab-runner for iOS
#made with fun
curl --output /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-darwin-amd64
chmod +x /usr/local/bin/gitlab-runner
gitlab-runner install
gitlab-runner start
gitlab-runner register -n --url CI_URL --registration-token TOKEN --tag-list fastlane,cocoapods,osx_10-13,xcode_9-2 --executor shell
#fix locale for cocoapods
echo 'export LC_ALL="en_US.UTF-8"' >> ~/.bash_profile
echo 'export LANG=en_US.UTF-8' >> ~/.bash_profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment