mirror of https://github.com/kiwix/libkiwix.git
Unlink and remove some linked python3 files
meson and ninja both depends on python3 which received an update. This python3 update fails to install when linking. This temp fix removes those files. Hopefully a future update will remove the need for this hack
This commit is contained in:
parent
1f5a160d3d
commit
f6f7214c99
|
@ -18,6 +18,9 @@ jobs:
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: |
|
run: |
|
||||||
brew update
|
brew update
|
||||||
|
brew unlink python3
|
||||||
|
# upgrade from python@3.11.2_1 to python@3.11.3 fails to overwrite those
|
||||||
|
rm -f /usr/local/bin/2to3 /usr/local/bin/2to3-3.11 /usr/local/bin/idle3 /usr/local/bin/idle3.11 /usr/local/bin/pydoc3 /usr/local/bin/pydoc3.11 /usr/local/bin/python3 /usr/local/bin/python3-config /usr/local/bin/python3.11 /usr/local/bin/python3.11-config
|
||||||
brew install pkg-config ninja meson
|
brew install pkg-config ninja meson
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
@ -127,4 +130,4 @@ jobs:
|
||||||
if: startsWith(matrix.target, 'native_')
|
if: startsWith(matrix.target, 'native_')
|
||||||
uses: codecov/codecov-action@v3
|
uses: codecov/codecov-action@v3
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
|
|
Loading…
Reference in New Issue