https://github.com/twitter/heron
Raw File
Tip revision: 41e6f3892ca126cf5aa6647499c4b91587b79116 authored by Karthik Ramasamy on 08 June 2017, 21:23:48 UTC
add a readme file for pyheron (#1944)
Tip revision: 41e6f38
.travis.yml
group: edge

sudo: required

language: java

jdk:
  - oraclejdk8

addons:
  apt:
    sources:
      - ubuntu-toolchain-r-test
    packages:
      - gcc-4.8
      - g++-4.8
      - 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:
  - . $HOME/.nvm/nvm.sh
  - nvm install stable
  - nvm use stable
  # download and install bazel
  - wget -q 'https://github.com/bazelbuild/bazel/releases/download/0.3.1/bazel-0.3.1-installer-linux-x86_64.sh'
  - chmod +x bazel-0.3.1-installer-linux-x86_64.sh
  - ./bazel-0.3.1-installer-linux-x86_64.sh --user

before_script:
  # required for building the website docs
  - (cd website && npm install && npm install gulp && which gulp)
  - wget -q https://github.com/spf13/hugo/releases/download/v0.15/hugo_0.15_amd64.deb
  - sudo dpkg -i hugo*.deb
  - hugo version

  # 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 python
  - python -V
  - which python2.7 
  - python2.7 -V
  - scripts/travis/ci.sh
back to top