From ecb47cb991546c889b9e62abf453d1a1cc61e9db Mon Sep 17 00:00:00 2001 From: Gabriel Ferreira Date: Mon, 8 Aug 2022 13:23:05 -0300 Subject: [PATCH] ci: enable python bindings on cppyy jobs --- utils/tests/gitlab-ci-cppyy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/tests/gitlab-ci-cppyy.yml b/utils/tests/gitlab-ci-cppyy.yml index ce456518e..0986f651e 100644 --- a/utils/tests/gitlab-ci-cppyy.yml +++ b/utils/tests/gitlab-ci-cppyy.yml @@ -11,7 +11,7 @@ cppyy-22.04: - DEBIAN_FRONTEND=noninteractive apt-get install -y g++ cmake ninja-build ccache libgsl-dev libgtk-3-dev libboost-dev wget git python3 python3-pip - pip install cppyy matplotlib numpy script: - - ./ns3 configure -G Ninja + - ./ns3 configure -G Ninja --enable-python-bindings - ./ns3 build - ./ns3 run first.py - ./ns3 run second.py @@ -43,7 +43,7 @@ cppyy-20.04: - DEBIAN_FRONTEND=noninteractive apt-get install -y g++ cmake ninja-build ccache libgsl-dev libgtk-3-dev libboost-dev wget git python3 python3-pip - pip install cppyy script: - - ./ns3 configure -G Ninja + - ./ns3 configure -G Ninja --enable-python-bindings - ./ns3 build - ./ns3 run first.py - ./ns3 run second.py @@ -68,7 +68,7 @@ cppyy-18.04: - update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 800 --slave /usr/bin/g++ g++ /usr/bin/g++-9 - pip3 install cppyy-cling cppyy-backend CPyCppyy cppyy # older python version may install dependencies in the wrong order script: - - CXX=g++-9 ./ns3 configure -G Ninja + - CXX=g++-9 ./ns3 configure -G Ninja --enable-python-bindings - ./ns3 build - ./ns3 run first.py - ./ns3 run second.py