1

我正在尝试在我的 .NET Core Travis-CI 构建中使用dotnet-warp作为全局工具,因为我更喜欢单个可执行文件的想法,而不是一个包含 75 个文件的文件夹。

我可以成功添加该工具并验证 $PATH 中有一个 tools/dotnet 文件夹...

但是日志显示由于最近添加了 .NET Core,我需要重新启动或注销才能真正使用该工具。

有人知道在 Travis-CI 环境中进行这项工作的方法吗?

4

1 回答 1

2

遇到同样的问题,使用来自Travis CI 安装依赖项页面的信息和对此问题的评论,将以下内容添加到我的 .travis.yml 解决了问题:

before_script:
  - export PATH=$PATH:/home/travis/.dotnet/tools

我的构建日志:

$ export PATH=$PATH:/home/travis/.dotnet/tools

$ dotnet tool install -g dotnet-warp
You can invoke the tool using the following command: dotnet-warp
Tool 'dotnet-warp' (version '1.0.9') was successfully installed.
The command "dotnet tool install -g dotnet-warp" exited with 0.

$ cd ./src/[my project]/
The command "cd ./src/[my project]/" exited with 0.

$ dotnet-warp
Running Publish...
Running Pack...
Saved binary to "[my project]"
The command "dotnet-warp" exited with 0.
于 2019-06-06T17:32:39.397 回答