-
Notifications
You must be signed in to change notification settings - Fork 90
/
build.py
executable file
·568 lines (482 loc) · 17.7 KB
/
build.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
#!/usr/bin/env python3
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
import argparse
import os
import platform
import sys
import time
import venv
import shutil
import subprocess
import functools
from prereqs import check_prereqs
# Disable buffered output so that the log statements and subprocess output get interleaved in proper order
print = functools.partial(print, flush=True)
parser = argparse.ArgumentParser(
description="Builds all projects in the repo, unless specific projects to build are passed "
"as options, in which case only those projects are built."
)
parser.add_argument(
"--cli", action="store_true", help="Build the command-line compiler"
)
parser.add_argument("--pip", action="store_true", help="Build the pip wheel")
parser.add_argument("--widgets", action="store_true", help="Build the Python widgets")
parser.add_argument("--wasm", action="store_true", help="Build the WebAssembly files")
parser.add_argument("--npm", action="store_true", help="Build the npm package")
parser.add_argument("--play", action="store_true", help="Build the web playground")
parser.add_argument("--vscode", action="store_true", help="Build the VS Code extension")
parser.add_argument(
"--jupyterlab", action="store_true", help="Build the JupyterLab extension"
)
parser.add_argument(
"--debug", action="store_true", help="Create a debug build (default is release)"
)
parser.add_argument(
"--test",
action=argparse.BooleanOptionalAction,
default=True,
help="Run the tests (default is --test)",
)
# Below allows for passing --no-check to avoid the default of True
parser.add_argument(
"--check",
action=argparse.BooleanOptionalAction,
default=True,
help="Run the linting and formatting checks (default is --check)",
)
parser.add_argument(
"--check-prereqs",
action=argparse.BooleanOptionalAction,
default=True,
help="Run the prerequisites check (default is --check-prereqs)",
)
parser.add_argument(
"--integration-tests",
action=argparse.BooleanOptionalAction,
default=False,
help="Build and run the integration tests (default is --no-integration-tests)",
)
parser.add_argument(
"--ci-bench",
action=argparse.BooleanOptionalAction,
default=False,
help="Run the benchmarking script that is run in CI (default is --no-ci-bench)",
)
args = parser.parse_args()
if args.check_prereqs:
check_prereqs()
# If no specific project given then build all
build_all = (
not args.cli
and not args.pip
and not args.widgets
and not args.wasm
and not args.npm
and not args.play
and not args.vscode
and not args.jupyterlab
and not args.ci_bench
)
build_cli = build_all or args.cli
build_pip = build_all or args.pip
build_widgets = build_all or args.widgets
build_wasm = build_all or args.wasm
build_npm = build_all or args.npm
build_play = build_all or args.play
build_vscode = build_all or args.vscode
build_jupyterlab = build_all or args.jupyterlab
ci_bench = args.ci_bench
# JavaScript projects and eslint, prettier depend on npm_install
# However the JupyterLab extension uses yarn in a separate workspace
npm_install_needed = (
build_npm or build_play or build_vscode or build_jupyterlab or args.check
)
npm_cmd = "npm.cmd" if platform.system() == "Windows" else "npm"
build_type = "debug" if args.debug else "release"
run_tests = args.test
root_dir = os.path.dirname(os.path.abspath(__file__))
wasm_src = os.path.join(root_dir, "wasm")
wasm_bld = os.path.join(root_dir, "target", "wasm32", build_type)
samples_src = os.path.join(root_dir, "samples")
npm_src = os.path.join(root_dir, "npm", "qsharp")
play_src = os.path.join(root_dir, "playground")
pip_src = os.path.join(root_dir, "pip")
widgets_src = os.path.join(root_dir, "widgets")
wheels_dir = os.path.join(root_dir, "target", "wheels")
vscode_src = os.path.join(root_dir, "vscode")
jupyterlab_src = os.path.join(root_dir, "jupyterlab")
def step_start(description):
global start_time
prefix = "::group::" if os.getenv("GITHUB_ACTIONS") == "true" else ""
print(f"{prefix}build.py: {description}")
start_time = time.time()
def step_end():
global start_time
duration = time.time() - start_time
print(f"build.py: Finished in {duration:.3f}s.")
if os.getenv("GITHUB_ACTIONS") == "true":
print(f"::endgroup::")
def use_python_env(folder):
# Check if in a virtual environment
if (
os.environ.get("VIRTUAL_ENV") is None
and os.environ.get("CONDA_PREFIX") is None
and os.environ.get("CI") is None
):
print("Not in a virtual python environment")
venv_dir = os.path.join(folder, ".venv")
# Create virtual environment under repo root
if not os.path.exists(venv_dir):
print(f"Creating a virtual environment under {venv_dir}")
venv.main([venv_dir])
# Check if .venv/bin/python exists, otherwise use .venv/Scripts/python.exe (Windows)
python_bin = os.path.join(venv_dir, "bin", "python")
if not os.path.exists(python_bin):
python_bin = os.path.join(venv_dir, "Scripts", "python.exe")
print(f"Using python from {python_bin}")
else:
# Already in a virtual environment, use current Python
python_bin = sys.executable
return python_bin
if npm_install_needed:
step_start("Running npm install")
subprocess.run([npm_cmd, "install"], check=True, text=True, cwd=root_dir)
step_end()
if args.check:
step_start("Running eslint and prettier checks")
subprocess.run([npm_cmd, "run", "check"], check=True, text=True, cwd=root_dir)
if build_wasm or build_cli:
# If we're going to check the Rust code, do this before we try to compile it
print("Running the cargo fmt and clippy checks")
subprocess.run(
["cargo", "fmt", "--all", "--", "--check"],
check=True,
text=True,
cwd=root_dir,
)
subprocess.run(
[
"cargo",
"clippy",
"--all-targets",
"--all-features",
"--",
"-D",
"warnings",
],
check=True,
text=True,
cwd=root_dir,
)
if build_cli:
print("Running Q# format check")
subprocess.run(
[
"cargo",
"run",
"--bin",
"qsc_formatter",
"--",
"./library/",
"./samples/",
"-r",
],
check=True,
text=True,
cwd=root_dir,
)
step_end()
if build_cli:
if run_tests:
step_start("Running Rust unit tests")
cargo_test_args = ["cargo", "test"]
if build_type == "release":
cargo_test_args.append("--release")
# Disable LTO for release tests to speed up compilation
cargo_test_args.append("--config")
cargo_test_args.append('profile.release.lto="off"')
subprocess.run(cargo_test_args, check=True, text=True, cwd=root_dir)
step_end()
def install_qsharp_python_package(cwd, wheelhouse, interpreter):
command_args = [
interpreter,
"-m",
"pip",
"install",
"--force-reinstall",
"--no-index",
"--find-links=" + wheelhouse,
"qsharp",
]
subprocess.run(command_args, check=True, text=True, cwd=cwd)
# If any package fails to install when using a requirements file, the entire
# process will fail with unpredicatable state of installed packages. To avoid
# this, we install each package individually from the requirements file.
#
# The reason we allow failures is that tooling for integration tests may not
# be available on all platforms, so we don't want to fail the build if we can't
# run the tests. The CI will run the tests on the platforms where the tooling
# is available giving us the confidence that the tests pass on those platforms.
def install_python_test_requirements(cwd, interpreter, check: bool = True):
requirements_file_path = os.path.join(cwd, "test_requirements.txt")
with open(requirements_file_path, "r", encoding="utf-8") as f:
# Skip empty lines
requirements = [line for line in f if line.strip()]
for requirement in requirements:
command_args = [
interpreter,
"-m",
"pip",
"install",
requirement,
"--only-binary",
"qirrunner",
"--only-binary",
"pyqir",
]
subprocess.run(command_args, check=check, text=True, cwd=cwd)
def build_qsharp_wheel(cwd, out_dir, interpreter, pip_env_dir):
command_args = [
interpreter,
"-m",
"pip",
"wheel",
"--wheel-dir",
out_dir,
"-v",
cwd,
]
subprocess.run(command_args, check=True, text=True, cwd=cwd, env=pip_env_dir)
def run_python_tests(cwd, interpreter):
command_args = [interpreter, "-m", "pytest"]
subprocess.run(command_args, check=True, text=True, cwd=cwd)
def run_python_integration_tests(cwd, interpreter):
# don't check to see if pip succeeds. We'll see if the import works later.
# If it doesn't, we'll skip the tests.
command_args = [interpreter, "-m", "pytest"]
subprocess.run(command_args, check=True, text=True, cwd=cwd)
def run_ci_historic_benchmark():
branch = "main"
output = subprocess.check_output(
["git", "rev-list", "--since=1 week ago", "--pretty=format:%ad__%h", "--date=short", branch]
).decode("utf-8")
print('\n'.join([line for i, line in enumerate(output.split('\n')) if i % 2 == 1]))
output = subprocess.check_output(
["git", "rev-list", "--since=1 week ago", "--pretty=format:%ad__%h", "--date=short", branch]
).decode("utf-8")
date_and_commits = [line for i, line in enumerate(output.split('\n')) if i % 2 == 1]
for date_and_commit in date_and_commits:
print("benching commit", date_and_commit)
result = subprocess.run(
["cargo", "criterion", "--message-format=json", "--history-id", date_and_commit],
capture_output=True,
text=True
)
with open(f"{date_and_commit}.json", "w") as f:
f.write(result.stdout)
if build_pip:
step_start("Building the pip package")
python_bin = use_python_env(pip_src)
# copy the process env vars
pip_env: dict[str, str] = os.environ.copy()
if platform.system() == "Darwin":
# if on mac, add the arch flags for universal binary
pip_env["ARCHFLAGS"] = "-arch x86_64 -arch arm64"
build_qsharp_wheel(pip_src, wheels_dir, python_bin, pip_env)
step_end()
if run_tests:
step_start("Running tests for the pip package")
install_python_test_requirements(pip_src, python_bin)
install_qsharp_python_package(pip_src, wheels_dir, python_bin)
run_python_tests(os.path.join(pip_src, "tests"), python_bin)
step_end()
if args.integration_tests:
step_start("Running integration tests for the pip package")
test_dir = os.path.join(pip_src, "tests-integration")
install_python_test_requirements(test_dir, python_bin, check=False)
install_qsharp_python_package(pip_src, wheels_dir, python_bin)
run_python_integration_tests(test_dir, python_bin)
step_end()
if build_widgets:
step_start("Building the Python widgets")
widgets_build_args = [
sys.executable,
"-m",
"pip",
"wheel",
"--no-deps",
"--wheel-dir",
wheels_dir,
widgets_src,
]
subprocess.run(widgets_build_args, check=True, text=True, cwd=widgets_src)
step_end()
if build_wasm:
step_start("Building the wasm crate")
# wasm-pack can't build for web and node in the same build, so need to run twice.
# Hopefully not needed if https://github.com/rustwasm/wasm-pack/issues/313 lands.
build_flag = "--release" if build_type == "release" else "--dev"
wasm_pack_args = ["wasm-pack", "build", build_flag]
web_build_args = ["--target", "web", "--out-dir", os.path.join(wasm_bld, "web")]
node_build_args = [
"--target",
"nodejs",
"--out-dir",
os.path.join(wasm_bld, "node"),
]
subprocess.run(wasm_pack_args + web_build_args, check=True, text=True, cwd=wasm_src)
subprocess.run(
wasm_pack_args + node_build_args, check=True, text=True, cwd=wasm_src
)
step_end()
if build_npm:
step_start("Building the npm package")
# Copy the wasm build files over for web and node targets
for target in ["web", "node"]:
lib_dir = os.path.join(npm_src, "lib", target)
os.makedirs(lib_dir, exist_ok=True)
for filename in ["qsc_wasm_bg.wasm", "qsc_wasm.d.ts", "qsc_wasm.js"]:
fullpath = os.path.join(wasm_bld, target, filename)
# To make the node files CommonJS modules, the extension needs to change
# (This is because the package is set to ECMAScript modules by default)
if target == "node" and filename == "qsc_wasm.js":
filename = "qsc_wasm.cjs"
if target == "node" and filename == "qsc_wasm.d.ts":
filename = "qsc_wasm.d.cts"
shutil.copy2(fullpath, os.path.join(lib_dir, filename))
npm_args = [npm_cmd, "run", "build"]
subprocess.run(npm_args, check=True, text=True, cwd=npm_src)
if run_tests:
print("Running tests for the npm package")
npm_test_args = ["node", "--test"]
subprocess.run(npm_test_args, check=True, text=True, cwd=npm_src)
step_end()
if build_play:
step_start("Building the playground")
play_args = [npm_cmd, "run", "build"]
subprocess.run(play_args, check=True, text=True, cwd=play_src)
step_end()
if build_vscode:
step_start("Building the VS Code extension")
vscode_args = [npm_cmd, "run", "build"]
subprocess.run(vscode_args, check=True, text=True, cwd=vscode_src)
step_end()
if args.integration_tests:
step_start("Running the VS Code integration tests")
vscode_args = [npm_cmd, "test"]
subprocess.run(vscode_args, check=True, text=True, cwd=vscode_src)
step_end()
if build_jupyterlab:
step_start("Building the JupyterLab extension")
python_bin = use_python_env(jupyterlab_src)
pip_build_args = [
python_bin,
"-m",
"pip",
"wheel",
"--wheel-dir",
wheels_dir,
jupyterlab_src,
]
subprocess.run(pip_build_args, check=True, text=True, cwd=jupyterlab_src)
step_end()
if build_pip and build_widgets and args.integration_tests:
step_start("Running notebook samples integration tests")
# Find all notebooks in the samples directory. Skip the basic sample and the azure submission sample, since those won't run
# nicely in automation.
notebook_files = [
os.path.join(dp, f)
for dp, _, filenames in os.walk(samples_src)
for f in filenames
if f.endswith(".ipynb")
and not (
f.startswith("sample.")
or f.startswith("azure_submission.")
or f.startswith("circuits.")
or f.startswith("iterative_phase_estimation.")
or f.startswith("repeat_until_success.")
or f.startswith("python-deps.")
)
]
python_bin = use_python_env(samples_src)
# copy the process env vars
pip_env: dict[str, str] = os.environ.copy()
# Install the qsharp package
pip_install_args = [
python_bin,
"-m",
"pip",
"install",
"--force-reinstall",
"--no-index",
"--find-links=" + wheels_dir,
f"qsharp",
]
subprocess.run(pip_install_args, check=True, text=True, cwd=pip_src)
# Install the widgets package from the folder so dependencies are installed properly
pip_install_args = [
python_bin,
"-m",
"pip",
"install",
widgets_src,
]
subprocess.run(
pip_install_args, check=True, text=True, cwd=widgets_src, env=pip_env
)
# Install other dependencies
pip_install_args = [
python_bin,
"-m",
"pip",
"install",
"ipykernel",
"nbconvert",
"pandas",
"qiskit>=1.2.2,<2.0.0",
]
subprocess.run(pip_install_args, check=True, text=True, cwd=root_dir, env=pip_env)
for notebook in notebook_files:
print(f"Running {notebook}")
# Run the notebook process, capturing stdout and only displaying it if there is an error
result = subprocess.run(
[
python_bin,
"-m",
"nbconvert",
"--to",
"notebook",
"--stdout",
"--ExecutePreprocessor.timeout=60",
"--sanitize-html",
"--execute",
notebook,
],
check=False,
text=True,
cwd=root_dir,
env=pip_env,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
encoding="utf-8",
)
if result.returncode != 0:
print(result.stdout)
raise Exception(f"Error running {notebook}")
step_end()
step_start("Running qsharp testing samples")
project_directories = [
dir for dir in os.walk(samples_src) if "qsharp.json" in dir[2]
]
test_projects_directories = [
dir for dir, _, _ in project_directories if dir.find("testing") != -1
]
install_python_test_requirements(pip_src, python_bin)
for test_project_dir in test_projects_directories:
run_python_tests(test_project_dir, python_bin)
step_end()
if ci_bench:
step_start("Running CI benchmarking script")
run_ci_historic_benchmark()
step_end()