将 TeamCity 工件复制到目标路径根目录的正确通配符语法是什么?

发布于 2024-10-20 06:32:36 字数 335 浏览 1 评论 0原文

我的 TeamCity 工件配置中发生了一场关于通配符语法的小戏剧。我想从任何文件夹中获取与模式 myproject.*.dll 匹配的每个文件,并将每个 DLL 放置在工件路径的 root 中。

这是我目前得到的:

**/obj/Debug/myproject.*.dll => /

这会获取所有 DLL,但将它们放入与源相同的文件夹结构中,这样我得到的工件中不会出现“myproject.web.dll”,而是“Web/obj/”调试/myproject.web.dll”。

我在这里缺少什么?

I'm having a small drama with the wildcard syntax in my TeamCity artifact configuration. I want to grab every file matching the pattern myproject.*.dll from any folder and place each DLL in the root of the artifacts path.

Here's what I've got at present:

**/obj/Debug/myproject.*.dll => /

This is grabbing all the DLLs but it's putting them inside the same folder structure as the source so rather than ending up with "myproject.web.dll" in the artifacts I get "Web/obj/debug/myproject.web.dll".

What am I missing here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

白日梦 2024-10-27 06:32:36

恐怕你无法以简单的方式做到这一点。
您应该将 *.dll 本地收集到一个位置,然后使用 TeamCity 的工件规则将它们全部复制到根目录。

或者,您可以手动输入所有路径(不带 ** 部分)

这就是它在 TC 中的工作原理。

I'm afraid you cannot do this in an easy way.
You should collect your *.dll locally to a single place, and than use TeamCity's artifacts rule to copy all of them to root directory.

Or, you can enter all paths manually (without ** part)

This is how it works in TC.

穿透光 2024-10-27 06:32:36

我不确定您是否可以使用工件根而不复制结构。文档指定

如果目标目录被省略
文件发布在根目录中
构建工件。

您不能只使用指定的文件夹名称(如 dist),这会导致问题吗?如果是的话,他们是什么!

例如

**/obj/Debug/myproject.*.dll => dist

更新 - 在文档中找到了更多信息

这些文件将在保留的情况下发布
目录的结构
由通配符匹配(目录
与“static”文本匹配的将不会
创建)。也就是说,TeamCity 将
创建从以下位置开始的目录
通配符第一次出现在
模式。

因此,如果你能更明确,可能会导致更扁平的结构。

I am not sure you can use the artifact root without it copying the structure. The docs specify

If target directory is omitted the
files are published in the root of the
build artifacts.

Can you not just use a designated folder name say dist, would this cause issues? If so what are they!

e.g

**/obj/Debug/myproject.*.dll => dist

Update - found some more info in the docs

The files will be published preserving
the structure of the directories
matched by the wildcard (directories
matched by "static" text will not be
created). That is, TeamCity will
create directories starting from the
first occurrence of the wildcard in
the pattern.

So if you can be more explicit it may lead to a flatter structure.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文