We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad9228e commit 32b80b3Copy full SHA for 32b80b3
.github/workflows/package-macos.yml
@@ -58,6 +58,15 @@ jobs:
58
pip install zstandard
59
env:
60
PYINSTALLER_COMPILE_BOOTLOADER: "1"
61
+ - name: Compile libgit2
62
+ run: |
63
+ git clone --depth=1 --branch=v1.9.1 https://github.com/libgit2/libgit2
64
+ cd libgit2
65
+ mkdir build
66
+ cd build
67
+ cmake ..
68
+ make
69
+ cp -v libgit2*.dylib ../..
70
- name: Run tests
71
timeout-minutes: 30
72
run: pytest --verbose
picard.spec
@@ -57,6 +57,7 @@ if os_name == 'Windows':
57
elif os_name == 'Darwin':
binaries += [('libdiscid.0.dylib', '.')]
+ binaries += [('libgit2.dylib', '.')]
if os.path.isfile(fpcalc_name):
binaries += [(fpcalc_name, '.')]
0 commit comments