## Templates
+- job-template:
+ name: lttng-analyses_{version}_build
+ defaults: lttng-analyses
+
+ project-type: matrix
+ node: 'master' # Applies only to matrix flyweight task
+ axes:
+ - axis:
+ type: slave
+ name: arch
+ values: '{obj:arch}'
+
+ builders:
+ - copyartifact:
+ project: babeltrace_master_build/arch=${{arch}},build=std,conf=python-bindings
+ which-build: last-successful
+ stable: true
+ filter: 'build/**'
+ target: 'deps/babeltrace'
+ - shell:
+ !include-raw-escape scripts/lttng-analyses/build.sh
+
+# publishers:
+# - archive:
+# artifacts: 'build/**'
+# allow-empty: false
+
+
- job-template:
name: lttng-analyses_{version}_pylint
defaults: lttng-analyses
version:
- master
jobs:
+ - 'lttng-analyses_{version}_build':
+ arch: !!python/tuple [x86-32, x86-64]
- 'lttng-analyses_{version}_pylint'
--- /dev/null
+#!/bin/sh -exu
+#
+# Copyright (C) 2015 - Michael Jeanson <mjeanson@efficios.com>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+PYTHON3="python3"
+P3_VERSION=$($PYTHON3 -c "import sys;print(sys.version[:3])")
+
+BABELTRACE_DIR=$WORKSPACE/deps/babeltrace/build
+
+export LD_LIBRARY_PATH="$BABELTRACE_DIR/lib"
+export PYTHONPATH="$BABELTRACE_DIR/lib/python${P3_VERSION}/dist-packages/"
+
+PYENV_HOME=$WORKSPACE/.pyenv/
+
+# Delete previously built virtualenv
+if [ -d $PYENV_HOME ]; then
+ rm -rf $PYENV_HOME
+fi
+
+# Create virtualenv and install necessary packages
+virtualenv --system-site-packages -p $PYTHON3 $PYENV_HOME
+
+set +u
+. $PYENV_HOME/bin/activate
+set -u
+
+pip install .
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+PYTHON3="python3"
+P3_VERSION=$($PYTHON3 -c "import sys;print(sys.version[:3])")
BABELTRACE_DIR=$WORKSPACE/deps/babeltrace/build
export LD_LIBRARY_PATH="$BABELTRACE_DIR/lib"
-export PYTHONPATH="$BABELTRACE_DIR/python3.4/dist-packages/"
+export PYTHONPATH="$BABELTRACE_DIR/lib/python${P3_VERSION}/dist-packages/"
PYENV_HOME=$WORKSPACE/.pyenv/
fi
# Create virtualenv and install necessary packages
-virtualenv --system-site-packages -p python3 $PYENV_HOME
+virtualenv --system-site-packages -p $PYTHON3 $PYENV_HOME
set +u
. $PYENV_HOME/bin/activate