手动创建构建配置
在项目配置中,你可以使用 Create build configuration
:Manually
提供 Name
和 Description
。构建配置 ID 是从 ProjectName 和构建配置名称生成的。
配置保存后,你可以指定版本控制设置。这将指向你的存储库,TeamCity 将在其中找到要构建的应用程序的源。
我们将创建一个新的构建步骤。该步骤将是命令行步骤,它将在日志中显示 Hello World
。
保存此步骤后,你可以运行 Build 配置,在 Build Log
选项卡中,你会发现类似这样的内容:
[00:00:00]Step 1/1: Hello World (Command Line)
[00:00:00][Step 1/1] Starting: C:\TeamCity\buildAgent\temp\agentTmp\custom_script4323583874650153904.cmd
[00:00:00][Step 1/1] in directory: C:\TeamCity\buildAgent\work\362562ae9b31fb9a
[00:00:00][Step 1/1] Hello World
[00:00:00][Step 1/1] Process exited with code 0
步骤 1/1 名称是你在 Step Name
框中定义的。此配置将创建一个临时脚本,此处 custom_script4323583874650153904.cmd
具有以下代码行:
echo Hello World