version: 0.2 phases: install: commands: - sed -i 's#/archive.ubuntu.com#/us-east-1.ec2.archive.ubuntu.com#g' /etc/apt/sources.list - add-apt-repository ppa:ubuntu-toolchain-r/test -y - apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA9EF27F - add-apt-repository ppa:openjdk-r/ppa -y - apt-get update -y - apt-get install -y g++-5 flex bison make git libwww-perl patch ccache libc6-dev-i386 jq - apt-get install -y openjdk-8-jdk - update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 1 - update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 1 build: commands: - echo Build started on `date` - cmake -H. -Bbuild '-DCMAKE_BUILD_TYPE=Release' '-DCMAKE_CXX_COMPILER=/usr/bin/g++-5' - git submodule update --init --recursive - cmake --build build -- -j2 post_build: commands: - cd build; ctest -V -L CORE -j2 - echo Build completed on `date` cache: paths: - '/var/cache/apt/**/*' - '/var/lib/apt/lists/**/*' - '/root/.ccache/**/*'