I'm trying to set up GitLab CI for .net project. Now I'm writing script in yml file. What I want to know: the path to the msbuild.exe and mstest.exe may be different for the different team members, how the same yml script may work for different users?
Or may be I'm understand how GitLab CI work in wrong way?
相关问题
- Gitlab-runner without Docker
- How to add more data to be stored in jenkins rest
- VSTS Build - Choose which unit tests run depending
- How to get Gitlab merge request description in Git
- How to get Gitlab merge request description in Git
相关文章
- 请问 GitLab 如何连接一个已有的 Kubernetes 集群
- gitlab升级失败
- gitlab-ci docker 部署后 找不到容器
- Best way to manage docker containers with supervis
- Build errors of missing packages in Visual Studio
- ssh: Could not resolve hostname git: Name or servi
- Jenkins Pipeline having “Multiple candidate revisi
- How do you center text in Gitlab markdown?
The path to the mstest.exe and all other referenced executable and files is based on the machine that has the GitLab runner running.
What's on your machine or anyone else's doesn't matter; Only the build server matters, so write your gitlab .yml accordingly.
Sample .net yml file