Clear release cache for stable-perf (#17287)

This commit is contained in:
Tyera Eulberg
2021-05-17 17:28:52 -06:00
committed by GitHub
parent bcbe155575
commit 7ea1131090

View File

@ -36,4 +36,7 @@ export CARGO_TARGET_CACHE=$HOME/cargo-target-cache/"$CHANNEL"-"$BUILDKITE_LABEL"
# `std:
# "found possibly newer version of crate `std` which `xyz` depends on
rm -rf target/bpfel-unknown-unknown
if [[ $BUILDKITE_LABEL = "stable-perf" ]]; then
rm -rf target/release
fi
)