Github user shazron commented on a diff in the pull request:

    https://github.com/apache/cordova-ios/pull/265#discussion_r82491705
  
    --- Diff: bin/templates/scripts/cordova/lib/build.js ---
    @@ -199,33 +219,52 @@ module.exports.findXCodeProjectIn = 
findXCodeProjectIn;
      * @param  {Boolean} isDevice      Flag that specify target for package 
(device/emulator)
      * @return {Array}                 Array of arguments that could be passed 
directly to spawn method
      */
    -function getXcodeBuildArgs(projectName, projectPath, configuration, 
isDevice) {
    +function getXcodeBuildArgs(projectName, projectPath, configuration, 
isDevice, buildFlags) {
         var xcodebuildArgs;
    +    var options;
    +    var buildActions = [ 'build' ];
    +    var settings;
    +    var customArgs = {};
    +    customArgs.otherFlags = [];
    +
    +    if (buildFlags) {
    +        if (typeof buildFlags === 'string' || buildFlags instanceof 
String) {
    +            parseBuildFlag(buildFlags, customArgs);
    +        } else { // buildFlags is an Array of strings
    +            buildFlags.forEach( function(flag) {
    +                parseBuildFlag(flag, customArgs);
    +            });
    +        }
    +    }
    +    
         if (isDevice) {
    -        xcodebuildArgs = [
    -            '-xcconfig', path.join(__dirname, '..', 'build-' + 
configuration.toLowerCase() + '.xcconfig'),
    -            '-workspace', projectName + '.xcworkspace',
    -            '-scheme', projectName,
    -            '-configuration', configuration,
    -            '-destination', 'generic/platform=iOS',
    -            '-archivePath', projectName + '.xcarchive',
    -            'archive',
    --- End diff --
    
    The automated tests do run the build command on Travis CI `npm run 
e2e-tests`
    
    There is no check whether the archive artifact was created though since we 
can't really build for device on Travis


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org

Reply via email to