[GitHub] cordova-windows pull request: CB-9565: Build failure for Windows 1...

2015-10-26 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/cordova-windows/pull/123


---
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



[GitHub] cordova-windows pull request: CB-9565: Build failure for Windows 1...

2015-10-26 Thread ghenry22
Github user ghenry22 commented on the pull request:

https://github.com/apache/cordova-windows/pull/123#issuecomment-151123814
  
tested with the mod as in the comments, resolved the error for me


---
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



[GitHub] cordova-windows pull request: CB-9565: Build failure for Windows 1...

2015-10-25 Thread ghenry22
Github user ghenry22 commented on the pull request:

https://github.com/apache/cordova-windows/pull/123#issuecomment-151005434
  
Currently blocked preparing my first windows store submission by this one.  
I use an external path to x64 node in visual studio 2015 so that it uses an 
updated version that doesn't freak out over path depth but then you hit this 
error when building for store submission fails.


---
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



[GitHub] cordova-windows pull request: CB-9565: Build failure for Windows 1...

2015-10-24 Thread SomaticIT
Github user SomaticIT commented on the pull request:

https://github.com/apache/cordova-windows/pull/123#issuecomment-150876679
  
@robpaveza @nikhilkh @rakatyal 
Any news on this, it's a really painful error.

The error in tests is an issue in @robpaveza fix 
[here](https://github.com/MSOpenTech/cordova-windows/blob/8ea8a719848e296e2cd54b2c5479160a9467046c/template/cordova/lib/MSBuildTools.js#L83).

javascript
if (version === '14.0' && path.indexOf('amd64')) {
path = require('path').join(path, '..');
}

should be:
javascript
if (version === '14.0' && path.indexOf('amd64') !== -1) {
path = require('path').join(path, '..');
}

Could this be fixed ?


---
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



[GitHub] cordova-windows pull request: CB-9565: Build failure for Windows 1...

2015-10-20 Thread nikhilkh
Github user nikhilkh commented on the pull request:

https://github.com/apache/cordova-windows/pull/123#issuecomment-149647416
  
@rakatyal  Can you please take a look at this one?


---
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



[GitHub] cordova-windows pull request: CB-9565: Build failure for Windows 1...

2015-10-07 Thread nikhilkh
Github user nikhilkh commented on the pull request:

https://github.com/apache/cordova-windows/pull/123#issuecomment-146366478
  
@robpaveza Any update on this?


---
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



[GitHub] cordova-windows pull request: CB-9565: Build failure for Windows 1...

2015-09-29 Thread nikhilkh
Github user nikhilkh commented on the pull request:

https://github.com/apache/cordova-windows/pull/123#issuecomment-144147409
  
@robpaveza  Can you please fix the failing test and merge this soon?


---
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



[GitHub] cordova-windows pull request: CB-9565: Build failure for Windows 1...

2015-09-22 Thread robpaveza
GitHub user robpaveza opened a pull request:

https://github.com/apache/cordova-windows/pull/123

CB-9565: Build failure for Windows 10.  This error is a result of using

This error is a result of using x64 Node and an incompatibility with x64 
msbuild; the .NET Native compiler is x86 only (for where it can run).  As a 
result, when msbuild-x64 tries to use it, it fails.  This works around the 
issue by running x86 instead.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-windows CB-9565

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-windows/pull/123.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #123


commit 8ea8a719848e296e2cd54b2c5479160a9467046c
Author: Rob Paveza 
Date:   2015-09-22T17:39:19Z

CB-9565: Build failure for Windows 10.  This error is a result of using
x64 Node and an incompatibility with x64 msbuild; the .NET Native compiler
is x86 only (for where it can run).  As a result, when msbuild-x64 tries
to use it, it fails.  This works around the issue by running x86 instead.




---
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