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 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. lsan:
  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=leak -g -Og" CFLAGS="-fsanitize=leak -g -Og" ./configure
  46. - name: make
  47. run: LSAN_OPTIONS=fast_unwind_on_malloc=0 make
  48. - name: make check
  49. run: LSAN_OPTIONS=fast_unwind_on_malloc=0 make check
  50. usan:
  51. runs-on: ubuntu-latest
  52. steps:
  53. - uses: actions/checkout@v2
  54. - name: dependencies
  55. run: sudo apt-get update && sudo apt-get install libpcaudio-dev libsonic-dev ronn kramdown
  56. - name: autoconf
  57. run: ./autogen.sh ; chmod -x INSTALL m4/*.m4
  58. - name: configure
  59. run: CXXFLAGS="-fsanitize=undefined -g -Og" CFLAGS="-fsanitize=undefined -g -Og" ./configure
  60. - name: make
  61. run: UBSAN_OPTIONS="halt_on_error=1" make
  62. - name: make check
  63. run: UBSAN_OPTIONS="halt_on_error=1" make check