From f7d8676576ea12ae3882b1e2941f90817c4d11cf Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Tue, 17 Jan 2023 02:38:35 +0100 Subject: [PATCH] ci: bump to PostgreSQL 15 on macOS package build Try to do without brew update, which at the moment downloads half a million of packages we don't use and then barfs on some java crap. --- tools/build/wheel_macos_before_all.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tools/build/wheel_macos_before_all.sh b/tools/build/wheel_macos_before_all.sh index 285a063a3..0ddf4263b 100755 --- a/tools/build/wheel_macos_before_all.sh +++ b/tools/build/wheel_macos_before_all.sh @@ -8,10 +8,7 @@ set -x dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -brew update -brew install gnu-sed postgresql@14 -# Fetch 14.1 if 14.0 is still the default version -brew reinstall postgresql +brew install gnu-sed postgresql@15 # Start the database for testing brew services start postgresql -- 2.47.2