aboutsummaryrefslogtreecommitdiffstats
path: root/release/ci.py
diff options
context:
space:
mode:
Diffstat (limited to 'release/ci.py')
-rwxr-xr-xrelease/ci.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/release/ci.py b/release/ci.py
index 18209dfd..a7ecfae5 100755
--- a/release/ci.py
+++ b/release/ci.py
@@ -148,6 +148,16 @@ def build():
os.makedirs(DIST_DIR, exist_ok=True)
+ if "WHEEL" in os.environ:
+ print("Building wheel...")
+ subprocess.check_call(
+ [
+ "python",
+ "setup.py", "-q", "bdist_wheel",
+ "--dist-dir", "release/dist",
+ ]
+ )
+
for bdist, tools in sorted(BDISTS.items()):
with Archive(join(DIST_DIR, archive_name(bdist))) as archive:
for tool in tools: