jjb: babeltrace: Release jobs script cleanup
[lttng-ci.git] / scripts / babeltrace / pylint.sh
1 #!/bin/bash -exu
2 #
3 # Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
4 # Copyright (C) 2019 Francis Deslauriers <francis.deslauriers@efficios.com>
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19 set -o pipefail
20
21 PYTHON3=python3
22
23 PYENV_HOME="$WORKSPACE/.pyenv/"
24
25 # Delete previously built virtualenv
26 if [ -d "$PYENV_HOME" ]; then
27 rm -rf "$PYENV_HOME"
28 fi
29
30 # Create virtualenv and install necessary packages
31 virtualenv --system-site-packages -p ${PYTHON3} "$PYENV_HOME"
32
33 set +ux
34 . "$PYENV_HOME/bin/activate"
35 set -ux
36
37 pip install --quiet black
38 pip install --quiet flake8
39
40 exit_code=0
41
42 cd src/babeltrace
43
44 black --diff --check . | tee ../../black.out || exit_code=1
45 flake8 --output-file=../../flake8.out --tee || exit_code=1
46
47 exit $exit_code
This page took 0.030035 seconds and 4 git commands to generate.