forked from microsoft/playwright-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_package.py
60 lines (53 loc) · 2.14 KB
/
build_package.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
# Copyright (c) Microsoft Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import glob
import os
import shutil
import subprocess
import sys
import zipfile
from playwright.path_utils import get_file_dirname
_dirname = get_file_dirname()
_build_dir = _dirname / "build"
if _build_dir.exists():
shutil.rmtree(_build_dir)
_dist_dir = _dirname / "dist"
if _dist_dir.exists():
shutil.rmtree(_dist_dir)
_egg_dir = _dirname / "playwright.egg-info"
if _egg_dir.exists():
shutil.rmtree(_egg_dir)
subprocess.check_call("python setup.py sdist bdist_wheel", shell=True)
base_wheel_location = glob.glob("dist/*.whl")[0]
without_platform = base_wheel_location[:-7]
pack_wheel_drivers = []
if sys.platform == "linux":
pack_wheel_drivers.append(("driver-linux", "manylinux1_x86_64.whl"))
if sys.platform == "darwin":
pack_wheel_drivers.append(("driver-darwin", "macosx_10_13_x86_64.whl"))
if sys.platform == "win32":
# Windows is the only one that can build all drivers (x86 and x64),
# so we publish from it
pack_wheel_drivers.append(("driver-linux", "manylinux1_x86_64.whl"))
pack_wheel_drivers.append(("driver-darwin", "macosx_10_13_x86_64.whl"))
pack_wheel_drivers.append(("driver-win32.exe", "win32.whl"))
pack_wheel_drivers.append(("driver-win32-amd64.exe", "win_amd64.whl"))
for driver, wheel in pack_wheel_drivers:
wheel_location = without_platform + wheel
shutil.copy(base_wheel_location, wheel_location)
from_location = f"driver/out/{driver}"
to_location = f"playwright/drivers/{driver}"
with zipfile.ZipFile(wheel_location, "a") as zipf:
zipf.write(from_location, to_location)
os.remove(base_wheel_location)