-
Type: Task
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: iOS 1.12
-
Component/s: iOS, Technical Debt
-
Tags:
-
Sprint:nxfit 9.3.5
-
Story Points:2
Currently, the https://qa.nuxeo.org/jenkins/job/Private/job/Mobile/job/nuxeo-mobile-master-ios/ job simply runs npm run build-ios, having:
"build-ios": "npm run lint && npm test && npm run bundle-ios", "bundle-ios": "node node_modules/react-native/local-cli/cli.js bundle --dev false --platform ios --entry-file ./index.ios.js --bundle-output ./ios/main.jsbundle --sourcemap-output ./ios/main.jsbundle.map",
So the Xcode compilation is not run which prevents us from detecting compilation issues, typically when a library is not well linked.
We should probably run something like:
fastlane gym --scheme NuxeoMobile --export_method app-store --workspace './ios/NuxeoMobile.xcworkspace'
to get some better feedback from the dev build.