language: cpp dist: bionic osx_image: xcode11.3 cache: ccache matrix: fast_finish: true include: - name: "lint check" os: linux compiler: gcc env: MAKE_TARGET=format-verify PATH="/usr/lib/llvm-8/bin:$PATH" addons: apt: sources: - llvm-toolchain-bionic-8 packages: - clang-format-8 - name: "make debug (linux/gcc)" os: linux compiler: gcc env: BUILD_TYPE=Debug IS_NOTIFICATION=1 addons: &core_apt_addons apt: packages: - build-essential - cmake - curl - git - libcap-dev - libcurl4-openssl-dev - libuv1-dev - ninja-build - libsodium-dev - libsystemd-dev - name: "make release (linux/gcc)" os: linux compiler: gcc env: BUILD_TYPE=Release addons: *core_apt_addons - name: "make release (old linux/gcc)" os: linux dist: xenial compiler: gcc env: BUILD_TYPE=Release addons: *core_apt_addons - name: "make debug (linux/clang)" os: linux compiler: clang env: BUILD_TYPE=Debug addons: *core_apt_addons - name: "make release (linux/clang)" os: linux compiler: clang env: BUILD_TYPE=Release addons: *core_apt_addons - name: "make debug (macOS/clang)" os: osx env: BUILD_TYPE=Debug PATH="/usr/local/opt/ccache/libexec:$PATH" - name: "make release (macOS/clang)" os: osx env: BUILD_TYPE=Release PATH="/usr/local/opt/ccache/libexec:$PATH" - name: "make release (linux/gcc/arm64)" arch: arm64 compiler: gcc env: BUILD_TYPE=Release addons: *core_apt_addons - name: "make release (linux/gcc/s390x)" arch: s390x compiler: gcc env: BUILD_TYPE=Release addons: *core_apt_addons - name: "make release (linux/gcc/ppc64le)" arch: ppc64le compiler: gcc env: BUILD_TYPE=Release addons: *core_apt_addons # - name: "make iOS" # os: osx # env: MAKE_TARGET=ios PATH="/usr/local/opt/ccache/libexec:$PATH" # - name: "make windows (macOS)" # os: osx # env: MAKE_TARGET=windows PATH="/usr/local/opt/ccache/libexec:$PATH" # - name: "make windows-release (macOS)" # os: osx # env: MAKE_TARGET=windows-release PATH="/usr/local/opt/ccache/libexec:$PATH" # - name: "make release (macOS beta/clang)" # os: osx # env: BUILD_TYPE=Release PATH="/usr/local/opt/ccache/libexec:$PATH" # - name: "address sanitizer" # os: osx # env: BUILD_TYPE=Debug XSAN=address PATH="/usr/local/opt/ccache/libexec:$PATH" CC=/usr/local/opt/llvm/bin/clang CXX=/usr/local/opt/llvm/bin/clang++ # - name: "thread sanitizer" # os: osx # env: BUILD_TYPE=Debug XSAN=thread PATH="/usr/local/opt/ccache/libexec:$PATH" CC=/usr/local/opt/llvm/bin/clang CXX=/usr/local/opt/llvm/bin/clang++ # - name: "undefined sanitizer" # os: osx # env: BUILD_TYPE=Debug XSAN=undefined PATH="/usr/local/opt/ccache/libexec:$PATH" CC=/usr/local/opt/llvm/bin/clang CXX=/usr/local/opt/llvm/bin/clang++ # - name: "memory sanitizer" # os: linux # compiler: clang # env: BUILD_TYPE=Debug XSAN=memory # addons: *core_apt_addons # - name: "router docker image" # os: linux # dist: xenial # env: DOCKER_FILE=docker/router.Dockerfile # services: docker - name: "make windows docker image" os: linux dist: xenial env: DOCKER_FILE=docker/alpine-windows.Dockerfile services: docker - name: "gcc trunk" os: linux dist: xenial env: DOCKER_FILE=docker/gcc-trunk.Dockerfile services: docker # - name: "native windows debug" # os: windows # env: BUILD_TYPE=Debug # - name: "native windows release" # os: windows # env: BUILD_TYPE=Release allow_failures: - name: "make windows docker image" - name: "native windows debug" - name: "native windows release" - name: "router docker image" - name: "gcc trunk" - arch: ppc64le env: global: - NINJA=ninja - STATIC_LINK=OFF addons: homebrew: update: true packages: - ccache - cmake - curl - libuv - make - ninja - libsodium before_install: - if [ "$TRAVIS_OS_NAME" == "windows" ]; then choco install curl make ninja; choco upgrade cmake.install; export CC="/c/Program Files/LLVM/bin/clang-cl"; export CXX="/c/Program Files/LLVM/bin/clang-cl"; fi script: - if [ "$TRAVIS_OS_NAME" == "windows" ]; then cmd.exe /C '"C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" amd64 && make test'; elif [[ ! -z $DOCKER_FILE ]]; then docker build -f $DOCKER_FILE .; else make DOWNLOAD_SODIUM=ON ${MAKE_TARGET:-test}; fi after_script: - echo $TRAVIS_COMMIT_RANGE - echo $TRAVIS_COMMIT_LOG notifications: webhooks: urls: $WEBHOOK_URL irc: on_success: change on_failure: change channels: - "chat.freenode.net#llarp" nick: lokinet-ci template: - "%{result} | %{repository}#%{build_number} (%{commit} : %{author}) | Build details : %{build_url}"