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.

windows.yml 444B

123456789101112131415161718192021
  1. name: Windows
  2. on:
  3. workflow_dispatch:
  4. push:
  5. branches: [ master ]
  6. pull_request:
  7. branches: [ master ]
  8. jobs:
  9. build:
  10. runs-on: windows-latest
  11. name: build
  12. steps:
  13. - uses: actions/checkout@v3
  14. - name: configure
  15. run: cmake -Bbuild -DUSE_ASYNC:BOOL=OFF
  16. - name: make
  17. run: cmake --build build
  18. - name: make check
  19. run: ctest --test-dir build -Ttest -C Debug -j1 --output-on-failure