diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-07-12 18:55:25 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-07-12 18:55:25 +0300 |
commit | 674f5b770657dfe04205becdd4a4efb6a2aa3141 (patch) | |
tree | 7d6baa5ca69eea5f5cc509ba2f09c6e3f75e6a37 /build.sh | |
parent | 7a468f62730029be9a47a2079fa267788d7a339e (diff) | |
parent | 6460b7ac419021ca998c5f849ad382423599fc58 (diff) |
Merge branch 'build-hooks' into DRTVWR-521-maint
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -280,6 +280,22 @@ python_cmd "$helpers/codeticket.py" addinput "Viewer Channel" "${viewer_channel} initialize_version # provided by buildscripts build.sh; sets version id +begin_section "coding policy check" +# On our TC Windows build hosts, the GitPython library underlying our +# coding_policy_git.py script fails to run git for reasons we have not tried +# to diagnose. Clearly git works fine on those hosts, or we would never get +# this far. Running coding policy checks on one platform *should* suffice... +if [[ "$arch" == "Darwin" ]] +then + # install the git-hooks dependencies + pip install -r "$(native_path "$git_hooks_checkout/requirements.txt")" || \ + fatal "pip install git-hooks failed" + # validate the branch we're about to build + python_cmd "$git_hooks_checkout/coding_policy_git.py" --all_files || \ + fatal "coding policy check failed" +fi +end_section "coding policy check" + # Now run the build succeeded=true last_built_variant= |