]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
Disable building Windows packages.
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Wed, 30 Jun 2021 00:31:12 +0000 (01:31 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Wed, 30 Jun 2021 00:48:41 +0000 (01:48 +0100)
.github/workflows/packages.yml
tools/build/wheel_windows_before_all.ps1

index 8e1d841d724dbcb8353964ec388f66ab17296da4..5ae0b4910846b6bf1b3ef60cc772af89634a6ff0 100644 (file)
@@ -96,6 +96,10 @@ jobs:
   windows:
     name: Build Windows packages
     runs-on: windows-2019
+    # TODO: Currently disabled: not completed yet. See the
+    # wheel_windows_before_all script.
+    if: false
+
     strategy:
       matrix:
         pyver: [cp36, cp37, cp38, cp39]
index eb9b88705a0302c4d59d620f4af47e8a4d4cc473..e93ab386212ed8558ca1bc5d16a128e3e4f480b6 100755 (executable)
@@ -3,6 +3,11 @@
 # Configure the environment needed to build wheel packages on Windows.
 # This script is designed to be used by cibuildwheel as CIBW_BEFORE_ALL_WINDOWS
 
+# The script is currently incomplete. The image seems to have postgres
+# installed but without libpq.lib, so installation fails. This is an incomplete
+# attempt to download the binary package (which is 235MB and takes forever)
+# and use it for building.
+
 # Set-PSDebug -Trace 1
 
 python -c "import os; print(os.environ['PATH'])"