diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2020-03-12 16:32:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-12 16:32:15 +0100 |
| commit | 3d23de7bafffa6f331b59ce775327bb4aa343166 (patch) | |
| tree | e15c2a68015ecbf718de0a41df6bf1c9219d3ab1 /src/ci | |
| parent | 9bc738697003db452a1a169dbddc74fe6237a02d (diff) | |
| parent | a41f1f128ee9fbe595a588b9b91d545a895f5c39 (diff) | |
| download | rust-3d23de7bafffa6f331b59ce775327bb4aa343166.tar.gz rust-3d23de7bafffa6f331b59ce775327bb4aa343166.zip | |
Rollup merge of #69705 - ehuss:toolstate-remove-redundant-beta, r=Mark-Simulacrum
Toolstate: remove redundant beta-week check. I made a bit of a mistake in #69624. The "beta regression" doesn't need to be checked twice. I also rolled up #69693 to avoid merge conflicts.
Diffstat (limited to 'src/ci')
| -rwxr-xr-x | src/ci/publish_toolstate.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ci/publish_toolstate.sh b/src/ci/publish_toolstate.sh index 7c43d034d8b..691df04e754 100755 --- a/src/ci/publish_toolstate.sh +++ b/src/ci/publish_toolstate.sh @@ -23,7 +23,9 @@ GIT_COMMIT_MSG="$(git log --format=%s -n1 HEAD)" cd rust-toolstate FAILURE=1 for RETRY_COUNT in 1 2 3 4 5; do - # The purpose is to publish the new "current" toolstate in the toolstate repo. + # The purpose of this is to publish the new "current" toolstate in the toolstate repo. + # This happens post-landing, on master. + # (Publishing the per-commit test results happens pre-landing in src/bootstrap/toolstate.rs). "$(ciCheckoutPath)/src/tools/publish_toolstate.py" "$GIT_COMMIT" \ "$GIT_COMMIT_MSG" \ "$MESSAGE_FILE" \ |
