https://github.com/twitter/heron
Raw File
Tip revision: 77904c245d9420a229c3dcbaad3862ca5aa4b93a authored by Eren Avsarogullari on 22 December 2017, 07:11:18 UTC
[Streamlet] Reinforce usage of StreamletNamePrefixes for more type-safety (#2627)
Tip revision: 77904c2
.travis.yml
group: edge

sudo: required

language: java

jdk:
  - oraclejdk8

addons:
  apt:
    sources:
      - ubuntu-toolchain-r-test

    packages:
      - gcc-4.8
      - g++-4.8
      - gcc-4.8-multilib
      - g++-4.8-multilib
      - python2.7
      - wget
      - pkg-config
      - zip
      - zlib1g-dev

env:
  - CC=gcc-4.8 CXX=g++-4.8 CPP=cpp-4.8 CXXCPP=cpp-4.8

before_install:
  # download and install bazel
  - wget -q 'https://github.com/bazelbuild/bazel/releases/download/0.5.4/bazel-0.5.4-installer-linux-x86_64.sh'
  - chmod +x bazel-0.5.4-installer-linux-x86_64.sh
  - ./bazel-0.5.4-installer-linux-x86_64.sh --user

before_script:
  # install python module for wheel files
  # required for python packaging
  - sudo pip install wheel

script:
  - which gcc-4.8
  - gcc --version
  - which g++-4.8
  - g++ --version
  - which cmake
  - cmake --version
  - which python
  - python -V
  - which python2.7
  - python2.7 -V
  - scripts/travis/ci.sh
back to top