Commit f6c8c6aa authored by Drew Blessing's avatar Drew Blessing

Recognize aborted job

parent 95cfe768
......@@ -65,7 +65,7 @@ class JenkinsService < CiService
if response.code == 200
if response.include?('alt="Success"')
'success'
elsif response.include?('alt="Failed"')
elsif response.include?('alt="Failed"') || response.include?('alt="Aborted"')
'failed'
elsif response.include?('alt="In progress"')
'running'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment