Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: use libboost-math-dev instead of libboost-all-dev #2717

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
apt:
packages:
- awscli
- make
script:
- scripts/travis/external_build.sh ./scripts/travis/build_test.sh
- # same stage, parallel job
Expand All @@ -67,6 +68,7 @@ jobs:
apt:
packages:
- awscli
- make
script:
- scripts/travis/external_build.sh ./scripts/travis/integration_test.sh
- # same stage, parallel job
Expand Down Expand Up @@ -116,6 +118,7 @@ jobs:
apt:
packages:
- awscli
- make
script:
- scripts/travis/external_build.sh ./scripts/travis/build_test.sh
- # same stage, parallel job
Expand All @@ -128,6 +131,7 @@ jobs:
apt:
packages:
- awscli
- make
script:
- scripts/travis/external_build.sh ./scripts/travis/integration_test.sh
- # same stage, parallel job
Expand Down Expand Up @@ -223,7 +227,7 @@ before_cache:
addons:
apt:
packages:
- libboost-all-dev
- libboost-math-dev
- fakeroot
- rpm
- python3-venv
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_linux_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
DISTRIB=$ID

ARCH_DEPS="boost boost-libs expect jq autoconf shellcheck sqlite python-virtualenv"
UBUNTU_DEPS="libboost-all-dev expect jq autoconf shellcheck sqlite3 python3-venv"
UBUNTU_DEPS="libboost-math-dev expect jq autoconf shellcheck sqlite3 python3-venv make"
FEDORA_DEPS="boost-devel expect jq autoconf ShellCheck sqlite python-virtualenv"

if [ "${DISTRIB}" = "arch" ]; then
Expand Down