build-ios.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo | |
echo "!!!! BUILDING IOS, PLEASE WAIT... !!!!!" | |
echo | |
npm ci | |
npm run lint | |
npm run markdown-link-check | |
npm run test -- --no-watchman | |
cd ios | |
pod install | |
RN_SRC_EXT=e2e.ts ENVFILE=.env.test xcodebuild -sdk iphonesimulator -derivedDataPath ./build -configuration Release -workspace ./FOO.xcworkspace -scheme FOO build | |
cd ../ | |
npm run test:ios:release:ci |