无法在VSTS版本管理中发布到HockeyApp [英] Can't publish to HockeyApp in VSTS Release Management

查看:107
本文介绍了无法在VSTS版本管理中发布到HockeyApp的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在建立一个UWP。我已经设置了一个RM任务,以便在CI完成时开始将APPX踢到HockeyApp(并将APPX文件放在\ drops中)。

I'm building a UWP. I've set up an RM task to kick off to kick the APPX to HockeyApp when the CI completes (and puts the APPX files in \drops).

一切顺利,直到RM任务尝试执行。它失败了,因为"被拒绝"在我的日志中,我发现:

Everything goes swimmingly until the RM task tries to execute. It fails as "rejected" and in my logs I find:

2015-11-30T17:04:38.2450216Z Executing the powershell script: C:\LR\MMS\Services\Mms\TaskAgentProvisioner\Tools\agents\default\tasks\HockeyApp\0.9.18\bootstrapper.ps1
2015-11-30T17:05:32.3898674Z ##[debug]appID=undefined
2015-11-30T17:05:32.3898674Z ##[debug]connectedServiceName=<REDACTED>
2015-11-30T17:05:32.3908674Z ##[debug]endpointUrl=https://rink.hockeyapp.net/api/2/apps/
2015-11-30T17:05:32.3908674Z ##[debug]endpointAuthToken=<REDACTED>
2015-11-30T17:05:32.3918681Z ##[debug]binaryPath=C:\a\39da52a04\CI - develop\drop\*.appx
2015-11-30T17:05:32.3948652Z ##[debug]symbolsPath=C:\a\39da52a04
2015-11-30T17:05:32.3968679Z ##[debug]nativeLibraryPath=C:\a\39da52a04
2015-11-30T17:05:32.3978668Z ##[debug]notesPath=C:\a\39da52a04
2015-11-30T17:05:32.3978668Z ##[debug]notes=undefined
2015-11-30T17:05:32.3988700Z ##[debug]publish=true
2015-11-30T17:05:32.3988700Z ##[debug]mandatory=false
2015-11-30T17:05:32.3988700Z ##[debug]notify=true
2015-11-30T17:05:32.3998676Z ##[debug]tags=undefined
2015-11-30T17:05:32.3998676Z ##[debug]teams=undefined
2015-11-30T17:05:32.4008679Z ##[debug]users=undefined
2015-11-30T17:05:32.4008679Z ##[debug]system.teamfoundationcollectionuri=<REDACTED>
2015-11-30T17:05:32.4018672Z ##[debug]system.teamproject=<REDACTED>
2015-11-30T17:05:32.4018672Z ##[debug]build.buildId=390
2015-11-30T17:05:32.4028668Z ##[debug]BUILD_SOURCEDIRECTORY=undefined
2015-11-30T17:05:32.4028668Z ##[debug]BUILD_SOURCESDIRECTORY=undefined
2015-11-30T17:05:32.4028668Z ##[debug]check path : C:/a/39da52a04/CI - develop/drop/<REDACTED>
2015-11-30T17:05:32.4038677Z ##[debug]BUILD_SOURCEDIRECTORY=undefined
2015-11-30T17:05:32.4038677Z ##[debug]BUILD_SOURCESDIRECTORY=undefined
2015-11-30T17:05:32.4048672Z ##[debug]check path : C:/a/39da52a04
2015-11-30T17:05:32.4048672Z ##[debug]BUILD_SOURCEDIRECTORY=undefined
2015-11-30T17:05:32.4048672Z ##[debug]BUILD_SOURCESDIRECTORY=undefined
2015-11-30T17:05:32.4058664Z ##[debug]check path : C:/a/39da52a04
2015-11-30T17:05:32.4058664Z ##[debug]BUILD_SOURCEDIRECTORY=undefined
2015-11-30T17:05:32.4068663Z ##[debug]BUILD_SOURCESDIRECTORY=undefined
2015-11-30T17:05:32.4068663Z ##[debug]check path : C:/a/39da52a04
2015-11-30T17:05:32.4068663Z ##[debug]Creating a symbols package file: C:\a\39da52a04.zip
2015-11-30T17:05:34.2358693Z ##[debug]Creating a native library file: C:\a\39da52a04.zip
2015-11-30T17:05:34.2508663Z ##[error]fs.js:552
2015-11-30T17:05:34.2508663Z ##[error]  var r = binding.read(fd, buffer, offset, length, position);
2015-11-30T17:05:34.2518662Z ##[error]                  ^
2015-11-30T17:05:34.2518662Z ##[error]Error: EISDIR, illegal operation on a directory
2015-11-30T17:05:34.2528683Z ##[error]    at Error (native)
2015-11-30T17:05:34.2528683Z ##[error]    at Object.fs.readSync (fs.js:552:19)
2015-11-30T17:05:34.2538662Z ##[error]    at Object.fs.readFileSync (fs.js:389:28)
2015-11-30T17:05:34.2538662Z ##[error]    at packageNativeLibraries (C:\LR\MMS\Services\Mms\TaskAgentProvisioner\Tools\agents\default\tasks\HockeyApp\0.9.18\hockeyApp.js:190:51)
2015-11-30T17:05:34.2548660Z ##[error]    at Object.<anonymous> (C:\LR\MMS\Services\Mms\TaskAgentProvisioner\Tools\agents\default\tasks\HockeyApp\0.9.18\hockeyApp.js:52:25)
2015-11-30T17:05:34.2548660Z ##[error]    at Module._compile (module.js:460:26)
2015-11-30T17:05:34.2558669Z ##[error]    at Object.Module._extensions..js (module.js:478:10)
2015-11-30T17:05:34.2558669Z ##[error]    at Module.load (module.js:355:32)
2015-11-30T17:05:34.2568665Z ##[error]    at Function.Module._load (module.js:310:12)
2015-11-30T17:05:34.2568665Z ##[error]    at Function.Module.runMain (module.js:501:10)

我的RM任务设置如下:

My RM task is set up like:

http://bc3te.ch/brandonh

http://bc3te.ch/brandonh




推荐答案

您好, 

Hi, 

感谢您与我们联系。

我正在研究收集有关您的请求的更多信息。我会尽早回复你的最新消息。衷心感谢您的耐心等待。

I am currently researching to gather more information with regards to your request. I shall revert back to you with an update at the earliest. Sincerely appreciate your patience.

问候,

Asha


这篇关于无法在VSTS版本管理中发布到HockeyApp的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆