@@ -38,10 +38,10 @@ jobs:
38
38
node-version : ${{ matrix.node }}
39
39
- if : ${{ startsWith(matrix.os, 'windows') }}
40
40
run : pip.exe install setuptools
41
- - if : ${{ ! startsWith(matrix.os, 'windows') && matrix.os != 'macos-14' }}
41
+ - if : ${{ startsWith(matrix.os, 'macos') }}
42
+ run : brew install python-setuptools
43
+ - if : ${{ !startsWith(matrix.os, 'windows') && !startsWith(matrix.os, 'macos') }}
42
44
run : python3 -m pip install setuptools
43
- - if : matrix.os == 'macos-14'
44
- run : python3 -m pip install --break-system-packages setuptools
45
45
- run : npm install --ignore-scripts
46
46
- run : npm run build-debug
47
47
- run : npm test
@@ -85,10 +85,10 @@ jobs:
85
85
node-version : 16
86
86
- if : ${{ startsWith(matrix.os, 'windows') }}
87
87
run : pip.exe install setuptools
88
- - if : ${{ ! startsWith(matrix.os, 'windows') && matrix.os != 'macos-14' }}
88
+ - if : ${{ startsWith(matrix.os, 'macos') }}
89
+ run : brew install python-setuptools
90
+ - if : ${{ !startsWith(matrix.os, 'windows') && !startsWith(matrix.os, 'macos') }}
89
91
run : python3 -m pip install setuptools
90
- - if : matrix.os == 'macos-14'
91
- run : python3 -m pip install --break-system-packages setuptools
92
92
- run : npm install --ignore-scripts
93
93
- run : ${{ env.NODE_BUILD_CMD }} -u ${{ secrets.GITHUB_TOKEN }}
94
94
- run : ${{ env.ELECTRON_BUILD_CMD }} -u ${{ secrets.GITHUB_TOKEN }}
0 commit comments