Skip to content

Commit 4e5a8b9

Browse files
committed
WIP
1 parent 059575b commit 4e5a8b9

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -226,18 +226,20 @@ jobs:
226226
227227
- name: Free Diskspace
228228
shell: pwsh
229-
if: contains(matrix.os, 'windows')
229+
if: ${{ runner.os }} == "Windows"
230230
run: |
231231
Get-Volume | Out-String | Write-Host
232-
#diskusage /t:500 C:\
233-
$dirs = 'C:\Windows\Installer', 'C:\Program Files\LLVM\bin',
232+
$dirs = 'C:\Program Files\LLVM\bin',
234233
'C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm',
235234
'C:\rtools45', 'C:\ghcup', 'C:\Program Files (x86)\Android',
236235
'C:\Program Files\Google\Chrome', 'C:\Program Files (x86)\Microsoft\Edge',
237236
'C:\Program Files\Mozilla Firefox', 'C:\Program Files\MySQL', 'C:\Julia',
238237
'C:\Program Files\MongoDB', 'C:\Program Files\Azure Cosmos DB Emulator',
239238
'C:\Program Files\PostgreSQL', 'C:\Program Files\Unity Hub', 'C:\ProgramData\chocolatey',
240-
'C:\ProgramData\Package Cache', 'C:\Strawberry', 'C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk'
239+
'C:\Strawberry', 'C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk'
240+
# The following are system directories that are typically large but should only be deleted
241+
# if we're desperate for space.
242+
# 'C:\Windows\Installer', 'C:\ProgramData\Package Cache',
241243
Remove-Item -Recurse -Force -ErrorAction Continue $dirs
242244
Get-Volume | Out-String | Write-Host
243245

src/ci/github-actions/jobs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ try:
172172
optional:
173173
# This job is used just to test optional jobs.
174174
# It will be replaced by tier 2 and tier 3 jobs in the future.
175-
- name: optional-mingw-check-1
175+
- name: optional-pr-check-1
176176
env:
177-
IMAGE: mingw-check-1
177+
IMAGE: pr-check-1
178178
<<: *job-linux-4c
179179

180180
# Main CI jobs that have to be green to merge a commit into master

0 commit comments

Comments
 (0)