Skip to content

ci: speed up Windows jobs by trimming the msys2 install - #354

Merged
ViralBShah merged 2 commits into
masterfrom
ci-windows-faster
Jun 23, 2026
Merged

ci: speed up Windows jobs by trimming the msys2 install#354
ViralBShah merged 2 commits into
masterfrom
ci-windows-faster

Conversation

@ViralBShah

Copy link
Copy Markdown
Member

The Windows jobs are slow in setup, not build. On the windows-11-arm clangarm64 job the steps were:

step time
Set up MSYS2 environment 318s
make 41s
make test 12s

The msys2 package cache is already enabled by default and hits (the log shows a 1.5 GB cache restore). The cost that remains is pacman extracting/installing the packages — ~3.5 min — which caching cannot avoid. We were installing base-devel (≈150 packages: autotools, perl, …) plus the full mingw-w64-*-toolchain meta.

This installs only what the build uses: make + a C compiler.

  • gcc environments (mingw64/mingw32/ucrt64): mingw-w64-<env>-gcc pulls in binutils + runtime, so they drop both base-devel and the toolchain meta.
  • clang environments (clang64/clangarm64): kept on the toolchain meta (no standalone binutils package provides ar/lld), but still drop base-devel.

Validated by the Windows CI on this PR (build + make test green on all five environments).

@codecov

codecov Bot commented Jun 22, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 72.12%. Comparing base (aeef4da) to head (5f16973).

Additional details and impacted files
@@           Coverage Diff           @@
##           master     #354   +/-   ##
=======================================
  Coverage   72.12%   72.12%           
=======================================
  Files         233      233           
  Lines        6135     6135           
  Branches     1607     1607           
=======================================
  Hits         4425     4425           
  Misses       1417     1417           
  Partials      293      293           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

The msys2 package cache is already enabled by default and hits, but the
slow part of the Windows jobs is pacman *extracting* the installed
packages, which the cache does not avoid: on the windows-11-arm runner
the install step alone took ~3.5 min installing base-devel and the full
toolchain meta-package.

Install only what openlibm builds with — make plus a C compiler. The
-gcc packages pull in binutils and the runtime, so mingw64/mingw32/ucrt64
drop base-devel and the toolchain meta entirely. The clang environments
keep their toolchain meta (no standalone binutils package provides ar),
but still drop base-devel.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
mingw-w64-clang-*-clang requires lld and llvm-tools (which provides ar),
so it is a complete toolchain by itself. Drop the clang -toolchain meta
(lldb/openmp/flang/... are unused) to cut the slow windows-11-arm setup.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@ViralBShah
ViralBShah merged commit 5233e2c into master Jun 23, 2026
24 checks passed
@ViralBShah
ViralBShah deleted the ci-windows-faster branch June 23, 2026 00:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant