From bc7e2e619dd243c6b2636181d1d89080b43b6c9f Mon Sep 17 00:00:00 2001 From: Marco Munizaga Date: Thu, 3 Jul 2025 12:04:07 -0700 Subject: [PATCH] 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. --- .github/workflows/go-test-config.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go-test-config.json b/.github/workflows/go-test-config.json index 879d74a..00cef44 100644 --- a/.github/workflows/go-test-config.json +++ b/.github/workflows/go-test-config.json @@ -1,3 +1,4 @@ { - "skipOSes": ["windows", "macos"] + "skipOSes": ["windows", "macos"], + "skip32bit": true }