Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
799 B
Diff
28 lines
799 B
Diff
diff --git a/build.py b/build.py
|
|
index 06905a11..56d54a17 100644
|
|
--- a/build.py
|
|
+++ b/build.py
|
|
@@ -10,7 +10,7 @@ from optparse import OptionParser
|
|
import shutil
|
|
from multiprocessing import Pool
|
|
|
|
-from setuptools import sandbox
|
|
+import subprocess
|
|
from hscommon import sphinxgen
|
|
from hscommon.build import (
|
|
add_to_pythonpath,
|
|
@@ -118,7 +118,12 @@ def build_normpo():
|
|
def build_pe_modules():
|
|
print("Building PE Modules")
|
|
# Leverage setup.py to build modules
|
|
- sandbox.run_setup("setup.py", ["build_ext", "--inplace"])
|
|
+ result = subprocess.run(
|
|
+ [sys.executable, "setup.py", "build_ext", "--inplace"],
|
|
+ check=True,
|
|
+ )
|
|
+ if result.returncode != 0:
|
|
+ sys.exit("Error building PE modules. Please check the output above.")
|
|
|
|
|
|
def build_normal():
|