Skip to content

Commit d90866d

Browse files
committed
WIP
1 parent 6a6bdb5 commit d90866d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,9 @@ jobs:
131131
run: src/ci/scripts/free-disk-space.sh
132132
if: matrix.free_disk
133133

134+
- name: early exit
135+
- run: exit 1
136+
134137
# Rust Log Analyzer can't currently detect the PR number of a GitHub
135138
# Actions build on its own, so a hint in the log message is needed to
136139
# point it in the right direction.

src/ci/scripts/free-disk-space-windows.ps1

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $ErrorActionPreference = 'Stop'
55
Get-Volume | Out-String | Write-Output
66

77
# Exclude directory from Defender to make this faster
8-
#Add-MpPreference -ExclusionPath C:\
8+
Add-MpPreference -ExclusionPath C:\
99

1010
$available = $(Get-Volume C).SizeRemaining
1111

@@ -30,5 +30,3 @@ Get-Volume | Out-String | Write-Output
3030

3131
$saved = ($(Get-Volume C).SizeRemaining - $available) / 1gb
3232
Write-Output "total space saved $saved GB"
33-
34-
exit 1

0 commit comments

Comments
 (0)