Сборка облака Nativescript Sidekick iOS завершается неудачно с: npm WARN tar ENOENT: нет такого файла или каталога, откройте '/ private / tmp / builds - PullRequest
0 голосов
/ 19 октября 2019

Я разрабатываю приложение с использованием NS 6 на компьютере под управлением Windows, используя Sidekick для сборки на облаке для iOS.

Вот мой package.json:

{
  "nativescript": {
    "id": "com.company.app",
    "tns-android": {
      "version": "6.0.0"
    },
    "tns-ios": {
      "version": "6.0.1"
    }
  },
  "description": "NativeScript Application",
  "license": "SEE LICENSE IN <your-license-filename>",
  "repository": "<fill-your-repository-here>",
  "dependencies": {
    "@angular/animations": "8.2.1",
    "@angular/common": "8.2.1",
    "@angular/compiler": "8.2.1",
    "@angular/core": "8.2.1",
    "@angular/forms": "8.2.1",
    "@angular/http": "8.0.0-beta.10",
    "@angular/platform-browser": "8.2.1",
    "@angular/platform-browser-dynamic": "8.2.1",
    "@angular/router": "8.2.1",
    "@nstudio/nativescript-pulltorefresh": "^1.0.1",
    "@proplugins/nativescript-globalevents": "file:plugins/proplugins-nativescript-globalevents-1.3.0.tgz",
    "@proplugins/nativescript-localstorage": "file:plugins/proplugins-nativescript-localstorage-2.2.1.tgz",
    "@proplugins/nativescript-platform": "file:plugins/proplugins-nativescript-platform-1.4.1.tgz",
    "@proplugins/nativescript-platform-css": "file:plugins/proplugins-nativescript-platform-css-1.7.0.tgz",
    "base-64": "^0.1.0",
    "nativescript-angular": "8.2.1",
    "nativescript-background-http": "4.2.0",
    "nativescript-color-picker": "1.6.0",
    "nativescript-contacts": "1.6.2",
    "nativescript-contacts-lite": "^0.2.6",
    "nativescript-drawingpad": "3.1.0",
    "nativescript-drop-down": "5.0.4",
    "nativescript-geolocation": "5.1.0",
    "nativescript-google-maps-sdk": "2.8.1",
    "nativescript-mediafilepicker": "^2.0.16",
    "nativescript-modal-datetimepicker": "1.2.1",
    "nativescript-pager": "^11.0.10",
    "nativescript-permissions": "^1.3.8",
    "nativescript-plugin-firebase": "10.0.1",
    "nativescript-stripe": "^6.0.0",
    "nativescript-theme-core": "2.0.5",
    "nativescript-ui-calendar": "5.0.0",
    "nativescript-ui-chart": "6.0.0",
    "nativescript-ui-dataform": "5.1.1",
    "nativescript-ui-gauge": "5.0.0",
    "nativescript-ui-listview": "7.1.0",
    "nativescript-ui-sidedrawer": "7.0.0",
    "node-sass": "^4.12.0",
    "reflect-metadata": "^0.1.13",
    "rxjs": "6.5.2",
    "tns-core-modules": "6.0.1",
    "zone.js": "0.10.1"
  },
  "devDependencies": {
    "@angular/compiler-cli": "8.2.1",
    "@nativescript/schematics": "0.7.2",
    "@ngtools/webpack": "8.2.1",
    "nativescript-dev-webpack": "1.2.1",
    "typescript": "3.4.5"
  },
  "readme": "NativeScript Application"
}

Я занимаюсь разработкойна компьютере с Windows:

tns version: 6.1.2
node version: 10.15.3
npm version: 6.12.0

Когда я создаю свое приложение для iOS с использованием облачной сборки Sidekick, я получаю:

[19-10-19 09:30:10.136] Build failed. Build failed. Reason is: 'Build failed with error code 2'. Additional information: [00:00:22.484] [WARN]  Command npm failed with exit code 1 Error output: 
 npm WARN tar ENOENT: no such file or directory, open '/private/tmp/builds/_/d793d62e5bf497a40a5438621bbf4ded2170e257/6.0.3/6.0.1/app/node_modules/.staging/@angular/animations-d9761ef9/bundles/animations-browser.umd.min.js.map'
npm WARN tar ENOENT: no such file or directory, open '/private/tmp/builds/_/d793d62e5bf497a40a5438621bbf4ded2170e257/6.0.3/6.0.1/app/node_modules/.staging/@angular/core-dbd4e95c/bundles/core.umd.js'
npm WARN tar ENOENT: no such file or directory, open '/private/tmp/builds/_/d793d62e5bf497a40a5438621bbf4ded2170e257/6.0.3/6.0.1/app/node_modules/.staging/@angular/router-bd8c3eed/bundles/router.umd.min.js.map'

Примерно 100 таких ошибок.

Локальная сборка Android успешно выполняется.

Есть идеи, что может быть причиной этого?

Спасибо

...