Besides doing the regular setup of XVim2 code sign xcodebuild
codesign -v -s XcodeSigner -f --timestamp=none /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild
Credits to https://egeek.me/2020/03/01/upgrading-xcode-and-xvim/
set -o pipefail | |
# swift test --enable-test-discovery 2>&1 | xcpretty | |
xcodebuild build-for-testing \ | |
-project MyProject.xcodeproj \ | |
-scheme MyScheme \ | |
-destination 'platform=OS X,arch=x86_64' | xcpretty | |
xcodebuild test \ | |
-project MyProject.xcodeproj \ | |
-scheme MyScheme\ | |
-destination 'platform=OS X,arch=x86_64' | xcpretty |
Besides doing the regular setup of XVim2 code sign xcodebuild
codesign -v -s XcodeSigner -f --timestamp=none /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild
Credits to https://egeek.me/2020/03/01/upgrading-xcode-and-xvim/