lttng-modules: Multiple fixes
[lttng-ci.git] / scripts / lttng-analyses / build.sh
index d0509fbceceab5375afc0a260031ff92f07519bd..f5b412eac213e8f069e268f61862f0ecea793442 100755 (executable)
@@ -15,6 +15,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
+SRCDIR="src/lttng-analyses"
+
 PYTHON3="python3"
 P3_VERSION=$($PYTHON3 -c "import sys;print(sys.version[:3])")
 
@@ -22,6 +24,7 @@ BABELTRACE_DIR=$WORKSPACE/deps/babeltrace/build
 
 export LD_LIBRARY_PATH="$BABELTRACE_DIR/lib"
 export PYTHONPATH="$BABELTRACE_DIR/lib/python${P3_VERSION}/dist-packages/"
+export PATH="$PATH:$BABELTRACE_DIR/bin"
 
 PYENV_HOME=$WORKSPACE/.pyenv/
 
@@ -37,4 +40,8 @@ set +u
 . $PYENV_HOME/bin/activate
 set -u
 
-pip install .
+cd "$SRCDIR"
+
+$PYTHON3 setup.py build
+$PYTHON3 setup.py test
+$PYTHON3 setup.py install
This page took 0.052596 seconds and 4 git commands to generate.