From: Matthew Fernandez Date: Fri, 9 Jul 2021 04:51:49 +0000 (-0700) Subject: move Pylint CI task to the latest Ubuntu image X-Git-Tag: 2.48.0~9^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d3d4209dc9f766eac33aff74aa24959b3ee3d1f9;p=graphviz move Pylint CI task to the latest Ubuntu image We should keep this task always on the latest Ubuntu in order to pick up the most recent version of Pylint. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2d55c890c..2ed28c559 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1057,10 +1057,10 @@ docker_push_ubuntu-21.04: - docker_build_ubuntu-21.04 lint_pylint: - image: "$CI_REGISTRY_IMAGE/ubuntu-20.10:$CI_COMMIT_SHA" + image: "$CI_REGISTRY_IMAGE/ubuntu-21.04:$CI_COMMIT_SHA" stage: test needs: - - docker_build_ubuntu-20.10 + - docker_build_ubuntu-21.04 script: - logfile=`mktemp` - python3 -m pylint --rcfile=.pylintrc `find . -name '*.py' | xargs` --exit-zero |& tee $logfile