我试图阻止Bamboo构建(当前正在运行),如果它们通过某个用例。
我有一个需要停止的构建列表。现在,我想发送一个REST请求来停止构建非常类似于构建右上角的“Stop Build”按钮(参见图像)。
在REST API文档中,我只看到了这个,只有在排队时才会停止构建。
https://docs.atlassian.com/bamboo/REST/3.3-SNAPSHOT/
/queue/{projectKey}-{buildKey}-{buildNumber}
停止构建执行,但是只有在尚未启动构建时 - 所以如果在构建队列中等待。如果队列中不存在构建,则方法无效。
我需要一种方法来阻止 RUNNING 构建。
答案 0 :(得分:1)
我能够通过自己的自动化服务器找出需要停止的Bamboo版本的名称。然后我通过直接点击stopPlan按钮代码实现了这一点。这是我写的Ruby方法:
# Get request to stop a build located at the given url
def stop_bamboo_build_request(build_key)
logger.debug "Build Key: #{build_key}"
uri = URI("#{Rails.configuration.bamboo_base_url}/build/admin/stopPlan.action?planKey=#{build_key}")
# Create client
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
# Create Request
req = Net::HTTP::Get.new(uri)
# Add Auth
req.basic_auth(Rails.configuration.bamboo_username, Rails.configuration.bamboo_password)
# Add headers
req.add_field "X-Atlassian-Token", "no-check"
# Fetch Request
res = http.request(req)
logger.debug "Response HTTP Status Code: #{res.code}"
logger.debug "Response HTTP Response Body: #{res.body}"
rescue StandardError => e
logger.debug "HTTP Request failed (#{e.message})"
end