Stop caching the registry on osx

The cache seems to corrupt itself a lot which breaks the build. The OSX
build finishes way before anything else anyway so the time save doesn't
matter.
This commit is contained in:
Steven Fackler 2018-09-12 20:44:58 -07:00
parent 8c6bc774db
commit 00641a9d6b
1 changed files with 0 additions and 2 deletions

View File

@ -76,9 +76,7 @@ macos_job: &MACOS_JOB
- run: sudo chown -R $USER /usr/local /opt - run: sudo chown -R $USER /usr/local /opt
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.20.0 - run: curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.20.0
- run: sudo ln -s $CARGO_HOME/bin/* /usr/local/bin - run: sudo ln -s $CARGO_HOME/bin/* /usr/local/bin
- *RESTORE_REGISTRY
- run: cargo generate-lockfile --verbose - run: cargo generate-lockfile --verbose
- *SAVE_REGISTRY
- run: echo "homebrew-x86_64-apple-darwin" > ~/lib_key - run: echo "homebrew-x86_64-apple-darwin" > ~/lib_key
- *RESTORE_DEPS - *RESTORE_DEPS
- run: cargo run --manifest-path=systest/Cargo.toml --features "$FEATURES" - run: cargo run --manifest-path=systest/Cargo.toml --features "$FEATURES"