Skip to content

Commit

Permalink
Enable CentOS Stream 9 in PR workflows
Browse files Browse the repository at this point in the history
It should work just fine and other than CS9, there are no other
platforms enabled ATM.
  • Loading branch information
jikortus committed Nov 1, 2024
1 parent 33002d2 commit a4976f8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/pr_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ permissions:

jobs:
centos_stream9:
# pylint is not available for centos_stream9, disable for now
if: false
runs-on: ubuntu-latest
container:
image: quay.io/centos/centos:stream9
Expand Down
2 changes: 1 addition & 1 deletion tests/run_suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ANABOT_DIR=`pwd`
#DOGTAIL_DIR=`install_dogtail $ANABOT_DIR/dogtail/dogtail-*.tar.gz`
# pylint's return code is bit-ORed value of statuses. See pylint manpage.
# 3 means: 1 - fatal message + 2 - error message
${PYLINT:-pylint} --init-hook="import site; site.addsitedir('./lib/python2.7/site-packages/')" anabot; PYLINT_RETCODE=$?
${PYLINT:-pylint} --init-hook="import site; site.addsitedir('./lib/python3.9/site-packages/')" anabot; PYLINT_RETCODE=$?
test $[PYLINT_RETCODE & 3] -ne 0 && SCORE=$[SCORE+1]

#rm -rf -- "$DOGTAIL_DIR"
Expand Down

0 comments on commit a4976f8

Please sign in to comment.