Add modern audio support for macOS and Linux #10
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: make | |
| on: [push, pull_request] | |
| jobs: | |
| linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| with: | |
| repository: festvox/speech_tools | |
| path: speech_tools | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| with: | |
| path: festival | |
| - run: | | |
| cd speech_tools | |
| ./configure | |
| make | |
| make test | |
| - run: | | |
| cd festival | |
| ./configure | |
| make | |
| macos: | |
| runs-on: macos-latest | |
| steps: | |
| - run: brew install gcc | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| with: | |
| repository: festvox/speech_tools | |
| path: speech_tools | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| with: | |
| path: festival | |
| - run: | | |
| cd speech_tools | |
| ./configure | |
| make | |
| make test | |
| env: | |
| CC: gcc | |
| - run: | | |
| cd festival | |
| ./configure | |
| make | |
| env: | |
| CC: gcc |