https://github.com/halide/Halide
Raw File
Tip revision: 9990d6112bfd5d93c6e0919557be3b3c8542d393 authored by Dan Palermo on 20 March 2020, 14:35:38 UTC
Add SDK_ROOT control to hexagon_remote/Makefile
Tip revision: 9990d61
.travis.yml
language: cpp
compiler:
  # Comment out for now to keep build matrix small
  # - clang
  - gcc
addons:
  apt:
    sources:
      - sourceline: 'deb https://apt.kitware.com/ubuntu/ bionic main'
        key_url: 'https://apt.kitware.com/keys/kitware-archive-latest.asc'
    packages:
      - libpng-dev # Get libpng for the tutorials and apps
      - cmake      # For modern CMake build
      - doxygen    # For generating docs
env:
  global:
    # The Travis Ubuntu Xenial environment we run in currently promises 2 cores.
    # We'll run at -j4 on the assumption that there's enough I/O bound work
    # for that to be profitable.
    - MAKEFLAGS=-j4
  matrix:
    # Configurations
    #
    # Each line in the ``env`` section represents a set of environment
    # variables passed to a build configuration
    #
    # Test a mix of llvm versions, a mix of build systems, and a mix of shared vs static library
    # Don't build as a static library with cmake. It risks exceeding the travis memory limit.
    #
    # Note that gcc5.4 is the default install on Travis Xenial, so we'll just use that.
    - LLVM_VERSION=9.0.0 BUILD_SYSTEM=MAKE
    - LLVM_VERSION=9.0.0 BUILD_SYSTEM=CMAKE HALIDE_SHARED_LIBRARY=ON
    - LLVM_VERSION=9.0.0 BUILD_SYSTEM=CMAKE HALIDE_SHARED_LIBRARY=OFF

    # Just one version of LLVM8 should suffice.
    - LLVM_VERSION=8.0.0 BUILD_SYSTEM=MAKE

cache: ccache
dist: bionic
install:
  # Download the right llvm release.
  - wget https://releases.llvm.org/${LLVM_VERSION}/clang+llvm-${LLVM_VERSION}-x86_64-linux-gnu-ubuntu-18.04.tar.xz
  - tar xvf clang+llvm-${LLVM_VERSION}-x86_64-linux-gnu-ubuntu-18.04.tar.xz
  - sudo mv clang+llvm-${LLVM_VERSION}-x86_64-linux-gnu-ubuntu-18.04 /usr/local/llvm
script:
  - test/scripts/build_travis.sh
back to top