Skip to content

Commit b51703c

Browse files
committed
Try the same for M1
1 parent 3be51ab commit b51703c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/app-tests.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/checkout@v4
4545

4646
- name: (MacOS) Install postgreSQL and pgvector using brew
47-
if: matrix.os == 'macos-13'
47+
if: matrix.os == 'macos-13' || matrix.os == 'macos-latest-xlarge'
4848
run: |
4949
brew install postgresql@14
5050
brew link --overwrite postgresql@14
@@ -54,13 +54,13 @@ jobs:
5454
psql -d postgres -c "ALTER USER ${{ env.POSTGRES_USERNAME }} WITH PASSWORD '${{ env.POSTGRES_PASSWORD }}'"
5555
psql -d postgres -c 'CREATE EXTENSION vector'
5656
57-
- name: (MacOSLarge) Install postgreSQL using action-setup-postgres
58-
if: matrix.os == 'macos-latest-xlarge'
59-
uses: ikalnytskyi/action-setup-postgres@v6
60-
with:
61-
username: ${{ env.POSTGRES_USERNAME }}
62-
password: ${{ env.POSTGRES_PASSWORD }}
63-
database: ${{ env.POSTGRES_DATABASE }}
57+
# - name: (MacOSLarge) Install postgreSQL using action-setup-postgres
58+
# if: matrix.os == 'macos-latest-xlarge'
59+
# uses: ikalnytskyi/action-setup-postgres@v6
60+
# with:
61+
# username: ${{ env.POSTGRES_USERNAME }}
62+
# password: ${{ env.POSTGRES_PASSWORD }}
63+
# database: ${{ env.POSTGRES_DATABASE }}
6464

6565
- name: (Windows) Install pgvector using install-pgvector.bat
6666
if: matrix.os == 'windows-latest'

0 commit comments

Comments
 (0)