You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by mo...@apache.org on 2022/04/27 14:40:56 UTC

[tvm] branch main updated: [CI][DOCKER] Install blocklint for identifying non-inclusive language (#11128)

This is an automated email from the ASF dual-hosted git repository.

mousius pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 1147d74ce7 [CI][DOCKER] Install blocklint for identifying non-inclusive language (#11128)
1147d74ce7 is described below

commit 1147d74ce7687ccf5ea1f5c0579b7f18b37f8412
Author: Grant Watson <gr...@arm.com>
AuthorDate: Wed Apr 27 15:40:47 2022 +0100

    [CI][DOCKER] Install blocklint for identifying non-inclusive language (#11128)
    
    Installs blocklint in the ci_lint Dockerfile
---
 docker/Dockerfile.ci_lint | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/Dockerfile.ci_lint b/docker/Dockerfile.ci_lint
index c5cc177322..4a02b7d999 100644
--- a/docker/Dockerfile.ci_lint
+++ b/docker/Dockerfile.ci_lint
@@ -32,7 +32,7 @@ RUN pip config set global.no-cache-dir false
 
 RUN apt-get update && apt-get install -y doxygen graphviz curl shellcheck
 
-RUN pip3 install cpplint pylint==2.4.4 mypy==0.902 black==22.3.0 flake8==3.9.2
+RUN pip3 install cpplint pylint==2.4.4 mypy==0.902 black==22.3.0 flake8==3.9.2 blocklint==0.2.3
 
 # Rust env (build early; takes a while)
 COPY install/ubuntu_install_rust.sh /install/ubuntu_install_rust.sh