Skip to content

Commit

Permalink
Use PG16 in homebrew test
Browse files Browse the repository at this point in the history
Upgrade the homebrew test to PostgreSQL 16.
  • Loading branch information
jnidzwetzki committed Dec 2, 2023
1 parent 4fa8b22 commit 5505ca1
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/homebrew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ name: Homebrew
- '*'
branches:
- release_test
- trigger/homebrew_package

jobs:
homebrew:
Expand All @@ -26,17 +27,22 @@ jobs:

- name: Setup
run: |
brew install postgresql@15
echo "/usr/local/opt/postgresql@15/bin" >> $GITHUB_PATH
brew install postgresql@16
echo "/usr/local/opt/postgresql@16/bin" >> $GITHUB_PATH
brew tap timescale/tap
brew info timescaledb
- name: Install timescaledb
run: |
brew install timescaledb ${{ matrix.install_options }}
timescaledb-tune --quiet --yes
cat timescaledb_move.sh
pg_config
timescaledb_move.sh
brew services start postgresql@15
brew services start postgresql@16
brew services info --all
find / -name "[email protected]" -exec cat {} \;
find / -name "postgresql.log" -exec cat {} \;
# checkout code to get version information
- uses: actions/checkout@v3
Expand Down

0 comments on commit 5505ca1

Please sign in to comment.