From dde69ae070dffb710db03e23625043f7a006ff32 Mon Sep 17 00:00:00 2001 From: Christopher Schwan Date: Fri, 28 Jun 2024 11:58:01 +0200 Subject: [PATCH] Debug `pkg-config` paths --- .github/workflows/cli-wheels.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cli-wheels.yml b/.github/workflows/cli-wheels.yml index 697b8314..64c9f3de 100644 --- a/.github/workflows/cli-wheels.yml +++ b/.github/workflows/cli-wheels.yml @@ -61,10 +61,12 @@ jobs: make install # print the path of `pkgconf` command -v pkg-config - - name: Set path to pkg-config + - name: Set pkg-config paths run: | # for some reason `pkg-config` isn't properly found by Rust echo "PKG_CONFIG=$(command -v pkg-config)" >> ${GITHUB_ENV} + echo "PKG_CONFIG_PATH=/ucrt64/lib/pkgconfig:${PKG_CONFIG_PATH}" >> ${GITHUB_ENV} + echo "${PKG_CONFIG_PATH}" - name: Build wheels uses: PyO3/maturin-action@v1 with: