diff options
| author | bors <bors@rust-lang.org> | 2019-10-18 04:53:16 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-10-18 04:53:16 +0000 |
| commit | ee6fc1bead1d81dfce866e23d4c5a88770e40cf3 (patch) | |
| tree | 2069769ef5ae16f962519540a3e28bcafe99f1ea | |
| parent | 77092a54d7cc0b3a54e6d42f68e7c3ccda404712 (diff) | |
| parent | 607f795349eae286192f4e95b4407d3c7def4d69 (diff) | |
| download | rust-ee6fc1bead1d81dfce866e23d4c5a88770e40cf3.tar.gz rust-ee6fc1bead1d81dfce866e23d4c5a88770e40cf3.zip | |
Auto merge of #4687 - lzutao:before-cache-appveyor, r=Manishearth
appveyor: on_finish run after saving cache According to <https://www.appveyor.com/docs/build-configuration/#build-pipeline> on_finish step runs after saving cache step, we should use after_test instead. changelog: none
| -rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index d15bdec98f0..984c31ace80 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,7 +15,7 @@ branches: cache: - '%USERPROFILE%\.cargo' -on_finish: +after_test: - cargo install -Z install-upgrade cargo-cache --debug - cargo cache --autoclean |
