https://github.com/szaghi/FLAP
Raw File
Tip revision: e9388c1f2d42dd8b1bed471eb3d2461db0b0fcc6 authored by Stefano Zaghi on 01 July 2015, 12:13:40 UTC
Merge manually PR#42 from zaak
Tip revision: e9388c1
.travis.yml
language: python

sudo: required

python:
  - 2.7

env:
  global:
    - secure: ZfUM5EuWFnPXgyw7M/dz4deW8qmxGsrCZTSeeLUeJj6lQ/zhM9Dn259IL4SuA3Neji6WOLqm6Z7SmXjm7ieFmn2/Fshuz1KWsGe8XdHDm8PUsfj1XVOpZBKqyPLUv2CPxR+V22fDaAUX3UlWdaFhsWYJzVo3GYX2fJtshFjKDJw=
    - APT_DEPENDS="gfortran-4.9 binutils"
    - PIP_DEPENDS="FoBiS.py markdown-checklist ford"
    - SCRIPT="FoBiS.py rule -ex makecoverage"

before_install:
  - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
  - sudo apt-get update -qq

install:
  - sudo apt-get install -y $APT_DEPENDS
  - sudo pip install $PIP_DEPENDS
  - ln -fs /usr/bin/gfortran-4.9 gfortran
  - ln -fs /usr/bin/gcov-4.9 gcov
  - export PATH=".:$PATH"

script:
  - $SCRIPT

after_success:
  - cd $TRAVIS_BUILD_DIR
  - bash <(curl -s https://codecov.io/bash)
  - ./makedoc.sh FLAP
back to top