From b09a776a261bf9fa10d92dc6dafd49a78222d1c0 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 28 Nov 2022 18:57:12 +0100 Subject: [PATCH] .travis.yml: remove obsolete file We've migrated to GitHub actions in commit c13911b171b96bba509e1738602363120daea6a8 a year ago --- .travis.yml | 117 ---------------------------------------------------- 1 file changed, 117 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 2655af6b9..000000000 --- a/.travis.yml +++ /dev/null @@ -1,117 +0,0 @@ -language: cpp - -jobs: - include: - # Ubuntu Focal (20.04) with GCC 9.3 - - os: linux - dist: focal - addons: - apt: - packages: - - meson - - libgtest-dev - - libboost-dev - - libfmt-dev - - # Ubuntu Focal (20.04) with GCC 9.3 on big-endian - - os: linux - arch: s390x - dist: focal - addons: - apt: - packages: - - meson - - libgtest-dev - - libboost-dev - - libfmt-dev - - # Ubuntu Focal (20.04) with GCC 9.3 on ARM64 - - os: linux - arch: arm64 - dist: focal - addons: - apt: - packages: - - meson - - libgtest-dev - - libboost-dev - - libfmt-dev - - # Ubuntu Trusty (16.04) with GCC 8 - - os: linux - dist: trusty - addons: - apt: - sources: - - ubuntu-toolchain-r-test - - sourceline: 'ppa:mhier/libboost-latest' - - sourceline: 'ppa:ricotz/toolchain' - - sourceline: 'ppa:deadsnakes/ppa' # for Python 3.7 (required by Meson) - packages: - - g++-8 - - libgtest-dev - - boost1.67 - - python3.6 - - python3-urllib3 - - ninja-build - before_install: - - wget https://bootstrap.pypa.io/get-pip.py - - /usr/bin/python3.6 get-pip.py --user --no-cache-dir - install: - - /usr/bin/python3.6 $HOME/.local/bin/pip install --user meson --no-cache-dir - env: - # use gold as workaround for https://sourceware.org/bugzilla/show_bug.cgi?id=17068 - - MATRIX_EVAL="export CC='ccache gcc-8' CXX='ccache g++-8' LDFLAGS=-fuse-ld=gold PATH=\$HOME/.local/bin:\$PATH" - - - os: osx - osx_image: xcode11.6 - addons: - homebrew: - packages: - - ccache - - meson - - fmt - - googletest - - icu4c - - ffmpeg - - libnfs - - yajl - - libupnp - - libid3tag - - chromaprint - - libsamplerate - - libsoxr - # libzzip appears to be broken on Homebrew: "ld: library not found for -lzzip" - #- libzzip - - flac - - opus - - libvorbis - - faad2 - - wavpack - - libmpdclient - env: - - MATRIX_EVAL="export PATH=/usr/local/opt/ccache/libexec:$PATH HOMEBREW_NO_ANALYTICS=1" - -cache: - apt: true - ccache: true - directories: - - $HOME/Library/Caches/Homebrew - -before_cache: - - test "$TRAVIS_OS_NAME" != "osx" || brew cleanup - -before_install: - - eval "${MATRIX_EVAL}" - -install: - -before_script: - - ccache -s - -script: - - eval "${MATRIX_EVAL}" - - OPTIONS="-Dtest=true" - - meson . output --werror $OPTIONS - - ninja -C output -v test - - ccache -s