Last active
October 21, 2021 07:20
-
-
Save badsyntax/e0b4ffa10f6dec7aaf9a201c9d04ba10 to your computer and use it in GitHub Desktop.
build-ios.sh
This file contains hidden or 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment