From 554d01bbf988f05d482ea36f84160b9393adf8f7 Mon Sep 17 00:00:00 2001 From: Adam Grare Date: Tue, 25 Oct 2022 15:30:39 -0400 Subject: [PATCH] Update qpid-proton to 0.37.0 --- bin/before_install | 34 ++++------------------------------ 1 file changed, 4 insertions(+), 30 deletions(-) diff --git a/bin/before_install b/bin/before_install index 57b2a8e1d..76fb0ce82 100755 --- a/bin/before_install +++ b/bin/before_install @@ -4,38 +4,12 @@ if [ -n "$CI" ]; then echo "== Installing system packages ==" sudo apt-get update sudo apt-get install -y libcurl4-openssl-dev + sudo apt-add-repository --yes 'deb http://us.archive.ubuntu.com/ubuntu kinetic universe' + sudo apt-get install -y libqpid-proton11-dev echo - # Install Qpid proton system library - set -v - pushd $PWD - - # Install the dev dependencies for building Qpid proton system library. - sudo apt-get install -y gcc cmake cmake-curses-gui uuid-dev - sudo apt-get install -y libssl-dev - sudo apt-get install -y libsasl2-2 libsasl2-dev - - # Get the latest Qpid Proton source - cd $HOME/build - git clone --branch 0.30.0 https://github.com/apache/qpid-proton.git - cd qpid-proton - - # Configure the source of Qpid Proton. - mkdir build - cd build - cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_BINDINGS= - - # Compile system libraries. - make all - - # Install system libraries - sudo make install - - # Enable the qpid_proton bundler group - [ -z "$BUNDLE_WITH" ] && bundle config with qpid_proton - - popd - set +v + # Enable the qpid_proton bundler group + [ -z "$BUNDLE_WITH" ] && bundle config with qpid_proton echo fi