aboutsummaryrefslogtreecommitdiff
path: root/infra/ci/build.py
diff options
context:
space:
mode:
authorAbhishek Arya <inferno@chromium.org>2020-07-15 09:46:24 -0700
committerGitHub <noreply@github.com>2020-07-15 09:46:24 -0700
commitcfb18fbea730ea9e0b2a5e814e74b7ddf1f8e35a (patch)
tree4b93710d3290db07845f339392e0b82104150d49 /infra/ci/build.py
parent26dcd1ac18a54d5c5e2a6a5731095c1492956feb (diff)
downloadoss-fuzz-cfb18fbea730ea9e0b2a5e814e74b7ddf1f8e35a.tar.gz
CI fix. (#4139)
Diffstat (limited to 'infra/ci/build.py')
-rwxr-xr-xinfra/ci/build.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/infra/ci/build.py b/infra/ci/build.py
index 7d695acab..15dd4fb61 100755
--- a/infra/ci/build.py
+++ b/infra/ci/build.py
@@ -88,7 +88,7 @@ def check_build(project, engine, sanitizer, architecture):
def should_build(project_yaml):
- """Is the build specified by travis enabled in the |project_yaml|?"""
+ """Return bool on if the build specified is enabled in the project.yaml."""
def is_enabled(env_var, yaml_name, defaults):
"""Is the value of |env_var| enabled in |project_yaml| (in the |yaml_name|
@@ -139,7 +139,7 @@ def build_project(project):
def main():
- """Build modified projects on travis."""
+ """Build modified projects."""
projects = get_modified_buildable_projects()
failed_projects = []
for project in projects: