eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ci.yml 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. name: CI
  2. on:
  3. push:
  4. branches: [ master ]
  5. pull_request:
  6. branches: [ master ]
  7. jobs:
  8. build:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v2
  12. - name: dependencies
  13. run: sudo apt-get update && sudo apt-get install libpcaudio-dev libsonic-dev ronn kramdown
  14. - name: autoconf
  15. run: ./autogen.sh ; chmod -x INSTALL m4/*.m4
  16. - name: configure
  17. run: ./configure
  18. - name: make
  19. run: make
  20. - name: make check
  21. run: make check
  22. asan:
  23. runs-on: ubuntu-latest
  24. steps:
  25. - uses: actions/checkout@v2
  26. - name: dependencies
  27. run: sudo apt-get update && sudo apt-get install libpcaudio-dev libsonic-dev ronn kramdown
  28. - name: autoconf
  29. run: ./autogen.sh ; chmod -x INSTALL m4/*.m4
  30. - name: configure
  31. run: CXXFLAGS="-fsanitize=address -g -Og" CFLAGS="-fsanitize=address -g -Og" ./configure
  32. - name: make
  33. run: ASAN_OPTIONS="detect_leaks=0 new_delete_type_mismatch=0" make
  34. - name: make check
  35. run: ASAN_OPTIONS="detect_leaks=0 new_delete_type_mismatch=0" make check
  36. usan:
  37. runs-on: ubuntu-latest
  38. steps:
  39. - uses: actions/checkout@v2
  40. - name: dependencies
  41. run: sudo apt-get update && sudo apt-get install libpcaudio-dev libsonic-dev ronn kramdown
  42. - name: autoconf
  43. run: ./autogen.sh ; chmod -x INSTALL m4/*.m4
  44. - name: configure
  45. run: CXXFLAGS="-fsanitize=undefined -g -Og" CFLAGS="-fsanitize=undefined -g -Og" ./configure
  46. - name: make
  47. run: UBSAN_OPTIONS="halt_on_error=1" make
  48. - name: make check
  49. run: UBSAN_OPTIONS="halt_on_error=1" make check