Skip to content

Commit d1f8dd2

Browse files
committed
feat: Add GitHub Actions workflow to build and publish Python packages.
1 parent 3496b0a commit d1f8dd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ jobs:
110110
111111
# Force GTK flags for Linux build manually to help CMake find headers
112112
if [ "${{ runner.os }}" == "Linux" ]; then
113-
export CFLAGS=$(pkg-config --cflags gtk+-2.0)
114-
export CXXFLAGS=$(pkg-config --cflags gtk+-2.0)
113+
export CFLAGS="$(pkg-config --cflags gtk+-2.0) -Wno-error"
114+
export CXXFLAGS="$(pkg-config --cflags gtk+-2.0) -Wno-error"
115115
echo "Forcing CFLAGS: $CFLAGS"
116116
fi
117117

0 commit comments

Comments
 (0)