]> git.lizzy.rs Git - rust.git/commit - src/tools/clippy
Rollup merge of #63191 - pietroalbini:really-fix-toolstate, r=alexcrichton
authorPietro Albini <pietro@pietroalbini.org>
Thu, 1 Aug 2019 14:00:34 +0000 (16:00 +0200)
committerGitHub <noreply@github.com>
Thu, 1 Aug 2019 14:00:34 +0000 (16:00 +0200)
commitb1d5e52840f05e846a56023d2ec68bf700274552
treea3bcfeae70d10a2f18cf1a2b3409a02dec05aa3d
parentaa15dadd15d4f908b37bd5495ca8ebe74358414d
parent8f8b3f26c2aac88b8d9ad4a43124142724f29df0
Rollup merge of #63191 - pietroalbini:really-fix-toolstate, r=alexcrichton

ci: fix toolstate not pushing data for Linux

A recent commit modified toolstate to only push updated data when the `TOOLSTATE_PUBLISH` environment variable is present. This worked fine on Windows but failed on Linux, since Linux jobs run inside Docker containers and the variable wasn't forwarded inside it.

This changes the Docker startup code to set the `TOOLSTATE_PUBLISH` enviornment variable inside the container if it's present outside.

r? @alexcrichton
fixes https://github.com/rust-lang/rust/issues/63190