File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 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"
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'
You can’t perform that action at this time.
0 commit comments