Skip to content

Commit f935133

Browse files
authored
Downgrade Windows distribution to windows-2022 (#2672)
#### Reference Issues/PRs <!--Example: Fixes #1234. See also #3456.--> #### What does this implement or fix? the windows-latest images are not using windows-2025 which has less disc space available, down to 150 form 256 GB. Looks like at the moment our windows Ci requires around 160GB peak disc space. This CI tries to pin the windows image back down to windows-2022 which has more disc space as a temp fix until we reduce the disc space. #### Any other comments? #### Checklist <details> <summary> Checklist for code changes... </summary> - [ ] Have you updated the relevant docstrings, documentation and copyright notice? - [ ] Is this contribution tested against [all ArcticDB's features](../docs/mkdocs/docs/technical/contributing.md)? - [ ] Do all exceptions introduced raise appropriate [error messages](https://docs.arcticdb.io/error_messages/)? - [ ] Are API changes highlighted in the PR description? - [ ] Is the PR labelled as enhancement or bug so it appears in autogenerated release notes? </details> <!-- Thanks for contributing a Pull Request to ArcticDB! Please ensure you have taken a look at: - ArcticDB's Code of Conduct: https://github.com/man-group/ArcticDB/blob/master/CODE_OF_CONDUCT.md - ArcticDB's Contribution Licensing: https://github.com/man-group/ArcticDB/blob/master/docs/mkdocs/docs/technical/contributing.md#contribution-licensing -->
1 parent 33dcbfe commit f935133

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/analysis_workflow.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,11 @@ jobs:
204204
python python/utils/asv_checks.py
205205
continue-on-error: false
206206

207+
- name: Disk usage
208+
if: always()
209+
run: du -m . | sort -n | tail -n 50 || true; df -h
210+
continue-on-error: true
211+
207212
# code_coverage:
208213
# runs-on: "ubuntu-22.04"
209214
# container:

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
- /:/mnt
178178
windows_matrix:
179179
- os: windows
180-
distro: windows-latest
180+
distro: windows-2022
181181
cmake_preset_prefix: windows-cl
182182
cibw_build_suffix: win_amd64
183183
build_dir: C:/cpp_build

0 commit comments

Comments
 (0)