Install build tools before running fdb_c_app test

This commit is contained in:
Andrew Noyes 2019-06-09 15:20:56 -07:00
parent 578ae0d595
commit 7bb262d21a
3 changed files with 9 additions and 0 deletions

View File

@ -6,6 +6,10 @@ then
source ${source_dir}/modules/util.sh
install_build_tools() {
apt-get -y install cmake gcc
}
install() {
local __res=0
enterfun

View File

@ -8,6 +8,10 @@ then
conf_save_extension=".rpmsave"
install_build_tools() {
yum -y install cmake gcc
}
install() {
local __res=0
enterfun

View File

@ -69,6 +69,7 @@ then
successOr "Loading python bindings failed"
# Test cmake and pkg-config integration: https://github.com/apple/foundationdb/issues/1483
install_build_tools
rm -rf build-fdb_c_app
mkdir build-fdb_c_app
pushd build-fdb_c_app