yabs.yml 342 B

123456789101112131415161718192021222324252627
  1. %YAML 1.1
  2. ---
  3. include: yabs-include.yml
  4. remote: git@git.0x1a.us:yabs-test-linux
  5. lang: c++
  6. os: linux
  7. arch:
  8. - x86
  9. - i686
  10. cc: gcc
  11. cxx: g++
  12. dist: yabs.tar.gz
  13. before-script:
  14. - make -f Make.linux
  15. - ./yabs --help
  16. ...
  17. ---
  18. include: yabs-include.yml
  19. remote: git@git.0x1a.us:yabs-test-bsd
  20. os: freebsd
  21. arch:
  22. - x86
  23. - i686
  24. cc: clang
  25. cxx: clang++
  26. ...