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.

dist.yml 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. name: Dist
  2. on:
  3. workflow_dispatch:
  4. push:
  5. branches: [ master ]
  6. pull_request:
  7. branches: [ master ]
  8. env:
  9. deps: libpcaudio-dev libsonic-dev ronn kramdown python3
  10. jobs:
  11. reprotest:
  12. runs-on: ubuntu-latest
  13. name: Build with reprotest on ${{ matrix.arch }}
  14. strategy:
  15. fail-fast: false
  16. matrix:
  17. arch: [x86-64, x86-32]
  18. include:
  19. - arch: x86-32
  20. archdeps: "gcc-multilib g++-multilib libpcaudio-dev:i386 libsonic-dev:i386 libc6-dbg:i386"
  21. archconfigflags: "-m32"
  22. - arch: x86-64
  23. archdeps: ""
  24. archconfigflags: ''
  25. steps:
  26. - uses: actions/checkout@v3
  27. - name: enable 32bit architecture
  28. run: sudo dpkg --add-architecture i386
  29. if: matrix.arch == 'x86-32'
  30. - name: dependencies
  31. run: sudo apt-get update && sudo apt-get install ${{ env.deps }} reprotest ${{ matrix.archdeps }}
  32. - name: autoconf
  33. run: ./autogen.sh ; chmod -x INSTALL m4/*.m4
  34. - name: run
  35. run: reprotest 'CFLAGS="${{ matrix.archconfigflags }}" CXXFLAGS="${{ matrix.archconfigflags }}" ./configure --without-gradle && make clean && make && make check && touch success' success
  36. distcheck:
  37. runs-on: ubuntu-latest
  38. name: Run distcheck
  39. steps:
  40. - uses: actions/checkout@v3
  41. - name: dependencies
  42. run: sudo apt-get update && sudo apt-get install ${{ env.deps }}
  43. - name: autoconf
  44. run: ./autogen.sh ; chmod -x INSTALL m4/*.m4
  45. - name: configure
  46. run: ./configure
  47. - name: make
  48. run: make
  49. - name: make check
  50. run: make check
  51. - name: make dist
  52. run: make dist
  53. - name: unpack
  54. run: mkdir unpack && tar -C unpack -xf *.tar.gz
  55. - name: re-configure
  56. run: cd unpack/espeak-ng-* && ./configure
  57. - name: re-make
  58. run: cd unpack/espeak-ng-* && make
  59. - name: re-make check
  60. run: cd unpack/espeak-ng-* && make check