Skip to content

Commit 62ff01c

Browse files
committed
Debug macos
1 parent 2a06e68 commit 62ff01c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/app-tests.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@ jobs:
3333
strategy:
3434
fail-fast: false
3535
matrix:
36-
os: ["ubuntu-latest", "windows-latest", "macos-latest-xlarge", "macos-13"]
37-
python_version: ["3.10", "3.11", "3.12"]
36+
#os: ["ubuntu-latest", "windows-latest", "macos-latest-xlarge", "macos-13"]
37+
os: ["macos-13"]
38+
python_version: ["3.10"]
39+
#python_version: ["3.10", "3.11", "3.12"]
3840
exclude:
3941
- os: macos-latest-xlarge
4042
python_version: "3.10"
@@ -48,8 +50,8 @@ jobs:
4850
brew link --overwrite postgresql@14
4951
brew install pgvector
5052
brew services start postgresql@14 && sleep 1
51-
psql -d postgres -c 'CREATE EXTENSION vector'
52-
psql -d postgres -c "ALTER USER $(whoami) WITH PASSWORD '${{ secrets.POSTGRES_PASSWORD }}'"
53+
createuser -s ${{ env.POSTGRES_USERNAME }}
54+
psql -d postgres -c "ALTER USER ${{ env.POSTGRES_USERNAME }} WITH PASSWORD '${{ env.POSTGRES_PASSWORD }}'"
5355
5456
- name: (MacOSLarge) Install postgreSQL using action-setup-postgres
5557
if: matrix.os == 'macos-latest-xlarge'

0 commit comments

Comments
 (0)