From e4fc9316cd25fca678b6a37ec53a21fb6bdc8dbb Mon Sep 17 00:00:00 2001 From: flip1995 Date: Thu, 19 Mar 2020 13:58:08 +0100 Subject: [PATCH] Get integration test binary from deps dir cc rust-lang/cargo#7965 --- .github/workflows/clippy_bors.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/clippy_bors.yml b/.github/workflows/clippy_bors.yml index a4f7b64cb6a7..6675a1029bbc 100644 --- a/.github/workflows/clippy_bors.yml +++ b/.github/workflows/clippy_bors.yml @@ -208,8 +208,9 @@ jobs: - name: Extract Binaries run: | DIR=$CARGO_TARGET_DIR/debug + rm $DIR/deps/integration-*.d + mv $DIR/deps/integration-* $DIR/integration find $DIR ! -executable -o -type d ! -path $DIR | xargs rm -rf - mv $DIR/integration-* $DIR/integration rm -rf $CARGO_TARGET_DIR/release - name: Upload Binaries