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 33
33
strategy :
34
34
fail-fast : false
35
35
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"]
38
40
exclude :
39
41
- os : macos-latest-xlarge
40
42
python_version : " 3.10"
48
50
brew link --overwrite postgresql@14
49
51
brew install pgvector
50
52
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 }}'"
53
55
54
56
- name : (MacOSLarge) Install postgreSQL using action-setup-postgres
55
57
if : matrix.os == 'macos-latest-xlarge'
You can’t perform that action at this time.
0 commit comments