Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

start auto-marking successful DTTs green #19787

Merged
merged 1 commit into from
Jan 5, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 3 additions & 4 deletions aws/ci_build
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ def main

if rack_env == :test
ChatClient.log "<@#{DevelopersTopic.dotd}> DTT finished", color: 'purple'
DevelopersTopic.set_dtt 'no (robo-DTT built)'
mark_dtt_green
end

Expand Down Expand Up @@ -183,12 +182,12 @@ def mark_dtt_green
# untested changes green.
test_branch_sha = GitUtils.git_revision_short

msg = "Marking commit #{test_branch_sha} green (temporarily disabled, take 2)"
msg = "Automatically marking commit #{test_branch_sha} green"
ChatClient.log msg
ChatClient.message 'deploy-status', msg

# DevelopersTopic.set_dtt 'yes'
# InfraTestTopic.set_green_commit test_branch_sha
DevelopersTopic.set_dtt 'yes'
InfraTestTopic.set_green_commit test_branch_sha
end

def emit_deploy_metric(deployment_stage, successful)
Expand Down