-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
139 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you 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 subprocess | ||
import os | ||
import logging | ||
import sys | ||
from pathlib import Path | ||
|
||
|
||
REPO_ROOT = Path(__file__).resolve().parent.parent.parent | ||
|
||
|
||
class RelativePathFilter(logging.Filter): | ||
def filter(self, record): | ||
path = Path(record.pathname).resolve() | ||
record.relativepath = str(path.relative_to(REPO_ROOT)) | ||
return True | ||
|
||
|
||
def init_log(): | ||
logging.basicConfig( | ||
format="[%(relativepath)s:%(lineno)d %(levelname)-1s] %(message)s", level=logging.INFO | ||
) | ||
|
||
# Flush on every log call (logging and then calling subprocess.run can make | ||
# the output look confusing) | ||
logging.root.handlers[0].addFilter(RelativePathFilter()) | ||
logging.root.handlers[0].flush = sys.stderr.flush | ||
|
||
|
||
class Sh: | ||
def __init__(self, env=None): | ||
self.env = os.environ.copy() | ||
if env is not None: | ||
self.env.update(env) | ||
|
||
def run(self, cmd: str, **kwargs): | ||
logging.info(f"+ {cmd}") | ||
if "check" not in kwargs: | ||
kwargs["check"] = True | ||
if "shell" not in kwargs: | ||
kwargs["shell"] = True | ||
if "env" not in kwargs: | ||
kwargs["env"] = self.env | ||
|
||
subprocess.run(cmd, **kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
#!/usr/bin/env python3 | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you 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 argparse | ||
import shutil | ||
import os | ||
import logging | ||
import multiprocessing | ||
|
||
from pathlib import Path | ||
from cmd_utils import Sh, init_log, REPO_ROOT | ||
|
||
|
||
if __name__ == "__main__": | ||
init_log() | ||
|
||
parser = argparse.ArgumentParser(description="List pytest nodeids for a folder") | ||
parser.add_argument("--sccache-bucket", required=False, help="sccache bucket name") | ||
parser.add_argument("--num-executors", required=True, help="number of Jenkins executors") | ||
parser.add_argument("--build-dir", default="build", help="build folder") | ||
args = parser.parse_args() | ||
|
||
env = {"VTA_HW_PATH": str(Path(os.getcwd()) / "3rdparty" / "vta-hw")} | ||
sccache_exe = shutil.which("sccache") | ||
|
||
use_sccache = sccache_exe is not None and args.sccache_bucket is not None | ||
build_dir = Path(os.getcwd()) / args.build_dir | ||
build_dir = build_dir.relative_to(REPO_ROOT) | ||
|
||
if use_sccache: | ||
env["SCCACHE_BUCKET"] = args.sccache_bucket | ||
env["CXX"] = "/opt/sccache/c++" | ||
env["CC"] = "/opt/sccache/cc" | ||
|
||
logging.info(f"Using sccache bucket: {args.sccache_bucket}") | ||
else: | ||
if sccache_exe is None: | ||
reason = "'sccache' executable not found" | ||
elif args.sccache_bucket is None: | ||
reason = "'sccache' executable not found" | ||
else: | ||
reason = "<unknown>" | ||
logging.info(f"Not using sccache, reason: {reason}") | ||
|
||
sh = Sh(env) | ||
|
||
if use_sccache: | ||
sh.run("sccache --start-server", check=False) | ||
logging.info("===== sccache stats =====") | ||
sh.run("sccache --show-stats") | ||
|
||
executors = int(args.num_executors) | ||
nproc = multiprocessing.cpu_count() | ||
|
||
available_cpus = nproc // executors | ||
num_cpus = max(available_cpus, 1) | ||
|
||
sh.run("cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..", cwd=build_dir) | ||
sh.run(f"cmake --build . -- VERBOSE=1 -j{num_cpus}", cwd=build_dir) | ||
|
||
if use_sccache: | ||
logging.info("===== sccache stats =====") | ||
sh.run("sccache --show-stats") |
This file was deleted.
Oops, something went wrong.