diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 164f066..36212f5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -34,10 +34,9 @@ jobs: env: CIBW_BUILD_FRONTEND: build CIBW_ARCHS: ppc64le - CIBW_ENVIRONMENT: | - APNGASM_COMPILE_TARGET=ppc64le - BOOST_VERSION=${{ matrix.boost_version }} - B2_VERSION=${{ matrix.b2_version }} + CIBW_ENVIRONMENT: APNGASM_COMPILE_TARGET=ppc64le + BOOST_VERSION="${{ matrix.boost_version }}" + B2_VERSION="${{ matrix.b2_version }}" CIBW_BUILD: "cp38-manylinux_ppc64le" - uses: actions/upload-artifact@v3 diff --git a/get_deps.py b/get_deps.py index 1a66ffd..90c7a5c 100755 --- a/get_deps.py +++ b/get_deps.py @@ -10,6 +10,8 @@ def install_deps(arch): # Use Conan to install dependencies settings = [] + print(f'DEBUGGING env variable: ${os.getenv("BOOST_VERSION")} ${os.getenv("B2_VERSION")}') + if platform.system() == 'Windows': settings.append('os=Windows') elif platform.system() == 'Darwin':