From 583e4a3ff8632750c836a2da5cae53b5f6607a7d Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Wed, 9 Oct 2024 10:03:46 +0200 Subject: [PATCH] Resolve RGEO support detection in CI The CI began failing on July 13, 2024, due to RGEO support not being detected. Deleting the cache makes the CI pass, hinting at a caching issue. This commit addresses the root cause to ensure RGEO support is consistently detected during CI builds. Close: #1783 --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 247f5f74..3235c50b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,6 +57,11 @@ jobs: run: pnpm install - name: Set up Database run: bundle exec rails db:prepare + - name: Force reinstall of RGeo with native extensions # Ref: diowa/icare#1783 + run: | + bundle show rgeo + rm -rf `bundle show rgeo` + bundle - name: Check GEOS support run: bundle exec rails rgeo_supports_geos - name: Run specs