Skip 32-bit tests in CI (#628)

This is roughly a third of our CI time, and, as far as I know, running
32bit tests has never caught an issue.

Also, I'm unaware of anyone using this library on a 32bit x86 system. I
believe the last 32bit x86 CPU released was the [pentium
4](https://en.wikipedia.org/wiki/List_of_Intel_Pentium_4_processors)
close to 20 years ago.
This commit is contained in:
Marco Munizaga 2025-07-03 12:04:07 -07:00 committed by GitHub
parent 631e47b133
commit bc7e2e619d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,3 +1,4 @@
{
"skipOSes": ["windows", "macos"]
"skipOSes": ["windows", "macos"],
"skip32bit": true
}