我有一个包含多个.NET项目的解决方案。我使用GitLab而不是自托管来进行版本控制,并且也想开始使用他们的CI工具。我已将以下.gitlab-ci.yml
文件添加到我的根目录:
stages:
- build
- test
build_job:
stage: build
script:
- 'echo building...'
- 'msbuild.exe Bizio.sln'
except:
- tags
test_job:
stage: test
script:
- 'echo: testing...'
- 'msbuild.exe Bizio.sln'
- 'dir /s /b *.Tests.dll | findstr /r Tests\\bin\\ > tests_list.txt'
- 'for /f %%f in (tests_list.txt) do mstest.exe /testcontainer: "%%f"'
except:
- tags
build
阶段总是失败,因为它不知道msbuild
是什么。确切的错误是:
/ bin / bash:第61行:msbuild.exe:找不到命令
经过一番调查,我发现我正在使用共享跑步者。以下是作业运行的整个输出:
Running with gitlab-runner 10.6.0-rc1 (0a9d5de9)
on docker-auto-scale 72989761
Using Docker executor with image ruby:2.5 ...
Pulling docker image ruby:2.5 ...
Using docker image sha256:bae0455cb2b9010f134a2da3a1fba9d217506beec2d41950d151e12a3112c418 for ruby:2.5 ...
Running on runner-72989761-project-1239128-concurrent-0 via runner-72989761-srm-1520985217-1a689f37...
Cloning repository...
Cloning into '/builds/hyjynx-studios/bizio'...
Checking out bc8085a4 as master...
Skipping Git submodules setup
$ echo building...
building...
$ C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe Bizio.sln
/bin/bash: line 61: msbuild.exe: command not found
ERROR: Job failed: exit code 1
看起来我的共享运行器正在使用Ruby的Docker镜像,这似乎是错误的。我不知道如何更改它或选择可用于.NET的另一个。在进行了一些进一步的调查后,我开始担心我必须通过大量的工作来获得我想要的东西,例如使用Azure VM来托管可以构建.NET应用程序的GitLab Runner。
使用GitLab的CI管道使用非自托管的GitLab实例构建我的.NET解决方案需要做什么?
答案 0 :(得分:13)
您应该可以在机器上使用Framework 4构建工具设置自己的共享运行器(使用Docker镜像,如microsoft / dotnet-framework-build,或者仅使用本机)。
最简单的方法是使用您自己的桌面,您知道您的解决方案已经构建。 (因为使用Docker镜像进行构建是绝对可能的,但需要确保在您的机器上使用docker工作的所有额外步骤。)
gitlab-runner register
gitlab-runner install
gitlab-runner start
呼。现在已经设置了运行器,它应该在您提交提交或请求合并时激活。
如果您仍然存在正确构建.gitlab-ci.yml文件的问题,可以通过在命令行中转到解决方案文件夹然后在本地调试它(无需通过gitlab.com继续触发)执行c:\gitlab-runner\gitlab-runner build
(例如,测试构建步骤)。
如果构建步骤在查找解决方案文件时遇到问题,您可能需要尝试从' msbuild.exe Bizio.sln'更改它。到' msbuild.exe。\ Bizio.sln'
答案 1 :(得分:2)
要用realrae补充答案,.Net Core应用程序的另一个选项是将对容器的调用作为.gitlab-ci.yml文件中的第一行。这将允许在共享的GitLab.com运行程序上进行构建。
image: microsoft/dotnet
如果要构建传统的.Net应用程序,则可以尝试使用mono docker映像。如果这对您不起作用,据我所知,本地跑步者是您唯一的选择。
image: mono:latest
答案 2 :(得分:0)
或多阶段构建:
stages:
- build-dotnet
- test-dotnet
- build-mono
- test-mono
build-dotnet:
stage: build-dotnet
image: microsoft/dotnet:latest
before_script:
- "cd source"
- "dotnet restore"
- "cd .."
- "cd samples"
- "dotnet restore"
- "cd .."
script:
- "cd source"
- "dotnet build"
- "cd .."
- "cd samples"
- "dotnet build"
- "cd .."
build-mono:
stage: build-mono
image: mono:latest
before_script:
script:
- nuget restore ./source/Source.sln
- msbuild
/p:Configuration="Release"
/p:Platform="Any CPU"
"./source/Source.sln"