From bb9c0bdb70c07a2756a29a926f6ec8675879c29b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wilfredo=20Vel=C3=A1zquez-Rodr=C3=ADguez?= Date: Wed, 12 Nov 2025 16:19:42 -0500 Subject: [PATCH] "Fix" Failing CI job CFFI Broke backwards-compatibility with SBCL 2.0.0 in https://github.com/cffi/cffi/pull/406 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9113f2a..4502eb8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,10 +34,10 @@ jobs: - name: Install SBCL if: steps.cache-sbcl.outputs.cache-hit != 'true' run: | - $uri = "http://downloads.sourceforge.net/sbcl/sbcl-2.0.0-x86-64-windows-binary.msi" + $uri = "http://downloads.sourceforge.net/sbcl/sbcl-2.5.0-x86-64-windows-binary.msi" Invoke-WebRequest -Uri $uri -OutFile "$env:TEMP\sbcl.msi" -UserAgent "_" Start-Process "msiexec" -ArgumentList "/a", "$env:TEMP\sbcl.msi", "/qbn", "TARGETDIR=$env:TEMP\sbcl\" -Wait -NoNewWindow - $sbclSubDir = "$env:TEMP\sbcl\PFiles\Steel Bank Common Lisp\2.0.0\" + $sbclSubDir = "$env:TEMP\sbcl\PFiles\Steel Bank Common Lisp\" Move-Item -Path $sbclSubDir -Destination "$HOME\sbcl\" - name: Configure SBCL run: |