Skip to content

Commit

Permalink
Fix for failing Homebrew tests (#7561)
Browse files Browse the repository at this point in the history
Tests are pinned to Postgres v16, Homebrew installs timescaledb for
version 17.

Disable-check: force-changelog-file
Disable-check: commit-count
  • Loading branch information
philkra authored Dec 23, 2024
1 parent 015b391 commit 5c93057
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/homebrew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:

- name: Setup
run: |
brew install postgresql@16
echo "/opt/homebrew/opt/postgresql@16/bin" >> $GITHUB_PATH
brew install postgresql@17
echo "/opt/homebrew/opt/postgresql@17/bin" >> $GITHUB_PATH
brew tap timescale/tap
brew info timescaledb
Expand All @@ -38,7 +38,7 @@ jobs:
brew install timescaledb ${{ matrix.install_options }}
timescaledb-tune --quiet --yes
timescaledb_move.sh
brew services start postgresql@16
brew services start postgresql@17
# checkout code to get version information
- uses: actions/checkout@v4
Expand Down

0 comments on commit 5c93057

Please sign in to comment.