.travis.yml 340 B

123456789101112131415161718
  1. sudo: true
  2. language: python
  3. env:
  4. - TARGET="lint"
  5. - TARGET="build-with-dependencies"
  6. before_script:
  7. - pip install ufolint
  8. - sudo apt-get -qq update
  9. - sudo apt-get install -y shellcheck
  10. - sudo apt-get install -y gcc g++ libfreetype6-dev libglib2.0-dev libcairo2-dev
  11. script:
  12. - make -j $TARGET
  13. notifications:
  14. email: false