From df47cd78565cf4bb9ffc9faf67202b86e02012aa Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 20 Jul 2022 13:25:21 -0700 Subject: [PATCH] Set CARGO_INCREMENTAL=0 --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index 7bf64e9..4065da3 100644 --- a/action.yml +++ b/action.yml @@ -59,5 +59,10 @@ runs: echo "::set-output name=cachekey::$(echo $DATE$HASH | head -c12)" shell: bash + - run: | + : disable incremental compilation + echo CARGO_INCREMENTAL=0 >> $GITHUB_ENV + shell: bash + - run: rustc +${{inputs.toolchain}} --version --verbose shell: bash