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.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 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