.NET CI构建有时会失败

时间:2016-02-29 20:21:07

标签: c# build continuous-integration gitlab-ci devenv

如何使此构建设置始终如一?

我有一个有时失败的构建设置。

如果我重试构建,它可能成功也可能不成功。

我的构建环境似乎有问题。

环境:

  • GitLab CI Multi Runner
  • Windows Server 2012
  • Runner as admin user。

GitLab CI Multi Runner配置:

gitlab-ci-multi-runner 0.7.2 (998cf5d)
Using Shell executor...

Running on XXXXXXX...
Cloning repository...
Cloning into 'C:\Multi-Runner\builds\db00f967\0\xxxxx-log-parser'...
Checking out 344bae64 as master...

devenv "Solution\xxxxx-log-parser.sln" /build Release

Microsoft Visual Studio 2015 Version 14.0.24720.0.
Copyright (C) Microsoft Corp. All rights reserved.
1>------ Build started: Project: xxxxx-database, Configuration: Release Any CPU ------
1>  C:\Windows\Microsoft.NET\Framework\v4.0.30319\Csc.exe /noconfig /nowarn:1701,1702,2008 /nostdlib+ /errorreport:prompt /warn:4 /define:TRACE /errorendlocation /preferreduilang:en-US /highentropyva+ /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll" /debug:pdbonly /optimize+ /out:obj\Release\xxxxx_database.dll /subsystemversion:6.00 /target:library /warnaserror- /utf8output "C:\Users\user\AppData\Local\Temp\.NETFramework,Version=v4.5.SqlClrAttributes.cs"
1>  Loading project references...
1>  Loading project files...
1>  Building the project model and resolving object interdependencies...
1>  Validating the project model...
1>  Writing model to C:\Multi-Runner\builds\db00f967\0\xxxxx-log-parser\Solution\xxxxx-database\obj\Release\Model.xml...
1>  xxxxx-database -> C:\Multi-Runner\builds\db00f967\0\xxxxx-log-parser\Solution\xxxxx-database\bin\Release\xxxxx_database.dll
1>  xxxxx-database -> C:\Multi-Runner\builds\db00f967\0\xxxxx-log-parser\Solution\xxxxx-database\bin\Release\xxxxx-database.dacpac
2>------ Build started: Project: xxxxx-log-parser, Configuration: Release Any CPU ------
2>  xxxxx-log-parser -> C:\Multi-Runner\builds\db00f967\0\xxxxx-log-parser\Solution\xxxxx-log-parser\bin\Release\xxxxx-log-parser.exe
3>------ Build started: Project: xxxxx-log-parser-tests, Configuration: Release Any CPU ------
4>------ Build started: Project: xxxxx-log-processor, Configuration: Release Any CPU ------

ERROR: Build failed with: exit status 255 

解决方案:

  • 2个C#控制台应用程序
  • SQL Server 2014数据库
  • C#单元测试项目
  • 的NuGet
    • 的EntityFramework

构建输出:

{{1}}

1 个答案:

答案 0 :(得分:2)

Switching over to MSBuild has resolved my issues.
I shouldn't have been using devenv.exe.