mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 18:45:52 +00:00
* use tagged containers for pkg build * update build images * continue to build container images in pipeline, but allow failure (non-block) * limit travis macos cache * add vs2019 windows to travis * remove xcode 9 travis build * remove clang5/6 from CI and update min version of Clang required in cmake * break windows CI build into stages to reduce timeouts * update datelib * add if condition to travis builds to allow commit message to limit builds by platform
38 lines
1.6 KiB
Bash
Executable File
38 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
source /etc/os-release
|
|
|
|
yum -y upgrade
|
|
yum -y update
|
|
yum -y install epel-release centos-release-scl
|
|
yum -y install \
|
|
wget curl time gcc-c++ time yum-utils autoconf automake pkgconfig libtool \
|
|
libstdc++-static rpm-build gnupg which make cmake \
|
|
devtoolset-7 devtoolset-7-gdb devtoolset-7-libasan-devel devtoolset-7-libtsan-devel devtoolset-7-libubsan-devel \
|
|
devtoolset-8 devtoolset-8-gdb devtoolset-8-binutils devtoolset-8-libstdc++-devel \
|
|
devtoolset-8-libasan-devel devtoolset-8-libtsan-devel devtoolset-8-libubsan-devel devtoolset-8-liblsan-devel \
|
|
flex flex-devel bison bison-devel parallel \
|
|
ncurses ncurses-devel ncurses-libs graphviz graphviz-devel \
|
|
lzip p7zip bzip2 bzip2-devel lzma-sdk lzma-sdk-devel xz-devel \
|
|
zlib zlib-devel zlib-static texinfo openssl openssl-static \
|
|
jemalloc jemalloc-devel \
|
|
libicu-devel htop \
|
|
python27-python rh-python35-python \
|
|
python-devel python27-python-devel rh-python35-python-devel \
|
|
python27 rh-python35 \
|
|
ninja-build git svn \
|
|
swig perl-Digest-MD5 python2-pip
|
|
|
|
if [ "${CI_USE}" = true ] ; then
|
|
# TODO need permanent link
|
|
yum -y install ftp://ftp.pbone.net/mirror/archive.fedoraproject.org/fedora-secondary/updates/26/i386/Packages/p/python2-six-1.10.0-9.fc26.noarch.rpm
|
|
|
|
yum -y install \
|
|
llvm-toolset-7 llvm-toolset-7-runtime llvm-toolset-7-build llvm-toolset-7-clang \
|
|
llvm-toolset-7-clang-analyzer llvm-toolset-7-clang-devel llvm-toolset-7-clang-libs \
|
|
llvm-toolset-7-clang-tools-extra llvm-toolset-7-compiler-rt llvm-toolset-7-lldb \
|
|
llvm-toolset-7-lldb-devel llvm-toolset-7-python-lldb
|
|
|
|
fi
|