NativeScript 4 not working on CircleCI - setup script for macOS does not install python's six package
See original GitHub issueI have a simple CircleCI configuration which runs on MacOS that will checkout some test code, install NS dependencies as described in the docs and then builds the project for iOS.
This works perfectly when I use nativescript@3
but always fails when using nativescript@4
with the following error:
You are missing the nativescript-cloud extension and you will not be able to execute cloud builds.
Your environment is not configured properly and you will not be able to execute local builds.
[...]
Exited with code 127
Any ideas what NS4 needs extra from NS3 ?
Versions:
$ node -v
v8.9.1
$ npm -v
5.5.1
$ xcodeproj --version
1.5.9
$ pod --version
1.5.3
# Command-line tools for Xcode
$ pkgutil --pkg-info=com.apple.pkg.CLTools_Executables
version: 9.1.0.0.1.1508540944
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
circleci/android:api-28-node8-alpha - Build Environment
Hello All, I have a failing Circleci build https://circleci.com/gh/rakeshgirase/CloudBuild/48 because of Android_Home is not set.
Read more >sitemap-questions-130.xml - Stack Overflow
https://stackoverflow.com/questions/10412/how-can-a-word-document-be-created-in ... /simple-javascript-problem-onclick-confirm-not-preventing-default-action ...
Read more >Complete CI/CD in Node JS using Docker, CircleCI, AWS (Part 3
In this section, we'll explore how we can create a link between our git repository and the CircleCI console to make it ready...
Read more >Clustering 4000 Stack Overflow tags with BigQuery k-means
You can check out more about working with Stack Overflow data and BigQuery ... 'machine-learning' shows a relation to 'python', but not the ......
Read more >10 BEST Mobile Testing Tools & Apps (2022 Update) - Guru99
Mobile Testing Tools help you automate testing of your Android and iOS Apps. These Mobile Application testing software can reduce the time ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’ve created PRs to address this issue in both repos. Thanks again for the help!
Hey @surdu , Thanks for providing the logs. Based on it I think the problem is that you do not have the python “six” package installed. Can you try installing it with
pip install six
and see if this will resolve the issue?