Skip to content

Commit

Permalink
[sonic-utilities] Test and build Python 3 package, but don't fail bui…
Browse files Browse the repository at this point in the history
…ld yet (#185)

In preparation for moving sonic-utilities to Python 3, in the sonic-utilities build script, we install all the Python 3 dependencies and attempt to test and build the Python 3 version of the package. This will ensure we can see the Python 3 build/test success status in the PR check build output. However, we will not fail the build job yet if the Python 3 test or build fails.
  • Loading branch information
jleveque committed Nov 11, 2020
1 parent a22ee3c commit e99738d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions scripts/common/sonic-utilities-build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,22 @@ cat <<EOF > build_sonic_utilities.sh
ls -lrt
sudo pip2 install --upgrade setuptools
sudo pip3 install --upgrade setuptools
sudo pip2 install buildimage/target/python-wheels/swsssdk-2.0.1-py2-none-any.whl
sudo pip3 install buildimage/target/python-wheels/swsssdk-2.0.1-py3-none-any.whl
sudo pip2 install buildimage/target/python-wheels/sonic_py_common-1.0-py2-none-any.whl
sudo pip3 install buildimage/target/python-wheels/sonic_py_common-1.0-py3-none-any.whl
sudo pip2 install buildimage/target/python-wheels/sonic_config_engine-1.0-py2-none-any.whl
sudo pip3 install buildimage/target/python-wheels/sonic_config_engine-1.0-py3-none-any.whl
sudo pip2 install buildimage/target/python-wheels/sonic_yang_mgmt-1.0-py2-none-any.whl
sudo pip3 install buildimage/target/python-wheels/sonic_yang_mgmt-1.0-py3-none-any.whl
sudo pip3 install buildimage/target/python-wheels/sonic_yang_models-1.0-py3-none-any.whl
sudo dpkg -i buildimage/target/debs/buster/libyang_1.0.73_amd64.deb
sudo dpkg -i buildimage/target/debs/buster/libyang-cpp_1.0.73_amd64.deb
sudo dpkg -i buildimage/target/debs/buster/python2-yang_1.0.73_amd64.deb
sudo dpkg -i buildimage/target/debs/buster/python3-yang_1.0.73_amd64.deb
# Below is required for swsscommon
sudo dpkg -i buildimage/target/debs/buster/{libnl-3-200_*.deb,libnl-genl-3-200_*.deb,libnl-nf-3-200_*.deb,libnl-route-3-200_*.deb,libhiredis0.14_*.deb}
Expand All @@ -26,6 +32,12 @@ sudo dpkg -i buildimage/target/debs/buster/python3-swsscommon_1.0.0_amd64.deb
cd sonic-utilities
# Run unit tests
sudo python3 setup.py test || true
# Build the Python wheel
sudo python3 setup.py bdist_wheel || true
# Run unit tests
sudo python2 setup.py test
Expand Down

0 comments on commit e99738d

Please sign in to comment.