We use a fairly standard Travis setup
git:
depth: 1
submodules: false
matrix:
include:
- os: linux
language: cpp
compiler: clang
addons:
apt:
sources: llvm-toolchain-trusty-5.0
packages: clang-5.0
env:
- TRAVIS_CI_ROW="regression-suite"
- MATRIX_EVAL="CC=clang-5.0 && CXX=clang++-5.0"
- os: linux
sudo: required
services: docker
env:
- TRAVIS_CI_ROW="oss-fuzz-build"
- MATRIX_EVAL=
before_install:
- sudo apt-get -qq update && sudo apt-get install -y autoconf cmake libtool
- eval "${MATRIX_EVAL}"
script:
- bash fuzzing/scripts/run-travis-ci.sh
but two days ago our builds stopped working, failing with
The command "sudo -E apt-get -yq --no-install-suggests --no-install-recommends $(travis_apt_get_options) install clang-5.0" failed and exited with 100 during .
Restarting the build does not help either. I would be very happy for some advice on this.
Thanks
Armin