2

我花了大约 3 天时间来设置 TeamCity 以构建和发布 asp.net-5 项目。最后我通过使用dnu publish命令发布站点来做到这一点。我正在使用批处理文件来执行以下命令

// stops the apppool for 'samplesite' overvise it returns exception
// The process cannot access the file '...' because it is being used by another process
call "%windir%\system32\inetsrv\appcmd" stop apppool "samplesite"

// publish the site to the --out dir
call "C:\Users\Administrator\.dnx\runtimes\dnx-coreclr-win-x86.1.0.0-beta6\bin\dnu" publish --out "F:\Sites\samplesite" --runtime dnx-clr-win-x86.1.0.0-beta6

// copies the 'prod' config.json
copy "..\..\build\configuration\samplesite\config.json" "F:\Sites\samplesite\approot\src\samplesite\config.json" /Y

// copies the 'prod' web.config
copy "..\..\build\configuration\samplesite\web.config" "F:\Sites\samplesite\wwwroot\web.config" /Y

// starts the  apppool for 'samplesite'
call "%windir%\system32\inetsrv\appcmd" start apppool "samplesite"

问题是

  1. 是否可以从命令返回错误/异常dnu publish以显示发布失败?例如,我可以在发布时遇到异常
    • 该进程无法访问该文件.....或
    • 路径长度不能超过 260 个字符...

但是 TeamCity 构建结果将显示为Success,所以我总是需要检查它是否真的完成了,没有任何异常。

  1. 是否有另一种更好的方式/脚本来发布 asp.net-5 站点?也许我只是做错了什么。
4

1 回答 1

0

这有点晚了,但我有一些东西一直在为我们工作。我一直在使用 powershell 脚本来包装我的命令行调用。因为它是 PS,所以您可以执行 try/catch,然后在 catch 中我使用 ##teamcity 属性将失败标记为团队城市。还要确保以 0 以外的状态码退出。请注意,我正在强制以状态码 1 退出以表示失败。最后,确保您的 PS 脚本中的任何命令行调用都以“&”开头。

因此,例如调用 DNU 发布(我正在使用我在团队城市中设置的环境变量来指示 dnx 版本)。

try
{
    & dnvm use $env:dnxversion -arch x64
    & dnu publish --no-source --configuration Release --runtime dnx-clr-win-x64.$env:dnxversion 
}
catch
{
    Write-Error $_
    ##teamcity[buildStatus status='FAILURE']
    [System.Environment]::Exit(1)
}
于 2015-09-14T21:58:31.003 回答