Skip to content

Commit

Permalink
Merge pull request #820 from Uberi/hotfix-pocketsphinx-test-failure
Browse files Browse the repository at this point in the history
hotfix: Pass CI to release 3.14.0
  • Loading branch information
ftnext authored Jan 14, 2025
2 parents 71cacd8 + cd5f4c4 commit e4af8de
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
fail-fast: true
matrix:
include:
- os: ubuntu-latest
- os: ubuntu-22.04
python-version: "3.9"
- os: ubuntu-latest
- os: ubuntu-22.04
python-version: "3.10"
- os: ubuntu-latest
- os: ubuntu-22.04
python-version: "3.11"
- os: ubuntu-latest
- os: ubuntu-22.04
python-version: "3.12"
- os: ubuntu-latest
- os: ubuntu-22.04
python-version: "3.13"
- os: windows-latest
python-version: "3.11"
Expand All @@ -34,19 +34,19 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install build dependencies
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y libpulse-dev libasound2-dev
sudo apt-get install --no-install-recommends -y portaudio19-dev
- name: Install ffmpeg (for Whisper)
uses: FedericoCarboni/setup-ffmpeg@v3
- name: Install Python dependencies (Ubuntu, <=3.12)
if: matrix.os == 'ubuntu-latest' && matrix.python-version != '3.13'
if: matrix.os == 'ubuntu-22.04' && matrix.python-version != '3.13'
run: |
python -m pip install .[dev,audio,pocketsphinx,google-cloud,whisper-local,faster-whisper,openai,groq]
- name: Install Python dependencies (Ubuntu, 3.13)
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13'
if: matrix.os == 'ubuntu-22.04' && matrix.python-version == '3.13'
run: |
python -m pip install standard-aifc setuptools
python -m pip install --no-build-isolation .[dev,audio,pocketsphinx,google-cloud,openai,groq]
Expand Down

0 comments on commit e4af8de

Please sign in to comment.