.travis.yml 485 B

123456789101112131415161718192021222324252627
  1. dist: xenial
  2. language: c
  3. compiler: gcc
  4. sudo: false
  5. addons:
  6. apt:
  7. packages:
  8. - clang
  9. - clang-format
  10. - python3-pip
  11. - python3-setuptools
  12. - libsystemd-dev
  13. - ninja-build
  14. artifacts:
  15. paths:
  16. - $(git ls-files -o | tr "\n" ":")
  17. before_script:
  18. - pip3 install wheel
  19. - pip3 install meson
  20. - meson --version
  21. script:
  22. - ./scripts/format-check.sh
  23. - ./bootstrap.sh -Dwith-examples=true
  24. - gamemoded -v
  25. - ./scripts/static-analyser-check.sh