We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c814b42 commit 09b589bCopy full SHA for 09b589b
.github/workflows/dracopy.yaml
@@ -33,7 +33,7 @@ jobs:
33
- name: Download DracoPy
34
run: |
35
git clone https://github.com/seung-lab/DracoPy \
36
- --branch "release-${DRACOPY_VERSION}" --single-branch
+ --branch "${DRACOPY_VERSION}" --single-branch
37
38
- name: Install CMake
39
uses: ssrobins/install-cmake@v1
@@ -42,7 +42,7 @@ jobs:
42
uses: pypa/[email protected]
43
# to supply options, put them in 'env', like:
44
env:
45
- CIBW_BEFORE_BUILD: git submodule init && git submodule update && pip install cython numpy==${{ inputs.numpyVersion }} scikit-build
+ CIBW_BEFORE_BUILD: cd DracoPy && git submodule init && git submodule update && pip install cython numpy==${{ inputs.numpyVersion }} scikit-build
46
CPPFLAGS: -I/usr/local/opt/zlib/include
47
LDFLAGS: -L/usr/local/opt/zlib/lib
48
CIBW_SKIP: "*-musllinux*"
0 commit comments