File tree 3 files changed +6
-4
lines changed
actions/setup-postgres-macos
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 5
5
steps :
6
6
- shell : bash
7
7
run : |
8
- brew services start postgresql
8
+ brew install postgresql@16
9
+ brew link postgresql@16 --force
10
+ brew services start postgresql@16
9
11
echo "Check PostgreSQL service is running"
10
12
i=10
11
13
COMMAND='pg_isready'
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ jobs:
139
139
- name : generate include
140
140
id : generate-include
141
141
run : |
142
- INCLUDE=('"python-version":"3.9","os":"windows-latest"' '"python-version":"3.9","os":"macos-12 "' )
142
+ INCLUDE=('"python-version":"3.9","os":"windows-latest"' '"python-version":"3.9","os":"macos-14 "' )
143
143
INCLUDE_GROUPS="["
144
144
for include in ${INCLUDE[@]}; do
145
145
for group in $(seq 1 ${{ env.PYTHON_INTEGRATION_TEST_WORKERS }}); do
Original file line number Diff line number Diff line change 35
35
type : choice
36
36
options :
37
37
- ' ubuntu-latest'
38
- - ' macos-12 '
38
+ - ' macos-14 '
39
39
- ' windows-latest'
40
40
num_runs_per_batch :
41
41
description : ' Max number of times to run the test per batch. We always run 10 batches.'
@@ -100,7 +100,7 @@ jobs:
100
100
101
101
# mac and windows don't use make due to limitations with docker with those runners in GitHub
102
102
- name : " Set up postgres (macos)"
103
- if : inputs.os == 'macos-12 '
103
+ if : inputs.os == 'macos-14 '
104
104
uses : ./.github/actions/setup-postgres-macos
105
105
106
106
- name : " Set up postgres (windows)"
You can’t perform that action at this time.
0 commit comments