We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceacdba commit 8ab58d6Copy full SHA for 8ab58d6
1 file changed
.github/workflows/ci.yml
@@ -183,6 +183,13 @@ jobs:
183
sudo apt-get update
184
sudo apt-get install -y gcc-aarch64-linux-gnu
185
186
+ - name: Disable Windows Defender scanning for cargo
187
+ if: runner.os == 'Windows'
188
+ run: |
189
+ Add-MpPreference -ExclusionPath "$env:USERPROFILE\.cargo"
190
+ Add-MpPreference -ExclusionPath "$env:USERPROFILE\.rustup"
191
+ Add-MpPreference -ExclusionPath "${{ github.workspace }}\target"
192
+
193
- name: Build
194
run: cargo build --release --target ${{ matrix.target }}
195
env:
0 commit comments