build/bot: add mac build script (#24917)

pull/24918/head
Felix Lange 3 years ago committed by GitHub
parent 7aced8114f
commit 8cab5e171c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      build/bot/macos-build.sh

@ -0,0 +1,22 @@
#!/bin/bash
set -e -x
# -- Build for macOS and upload to Azure
go run build/ci.go install -dlgo
go run build/ci.go archive -type tar # -signer OSX_SIGNING_KEY -upload gethstore/builds
# # -- CocoaPods
# gem uninstall cocoapods -a -x
# gem install cocoapods
# mv ~/.cocoapods/repos/master ~/.cocoapods/repos/master.bak
# sed -i '.bak' 's/repo.join/!repo.join/g' $(dirname `gem which cocoapods`)/cocoapods/sources_manager.rb
# git clone --depth=1 https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/master
# pod setup --verbose
# -- Check XCode version
xctool -version
xcrun simctl list
# # -- Build for iOS and upload to Azure
# go run build/ci.go xcode -signer IOS_SIGNING_KEY -upload gethstore/builds
Loading…
Cancel
Save