From a85723a60e064d2c53efcf8b2ba99ed5129c1387 Mon Sep 17 00:00:00 2001 From: Claudio Santini Date: Mon, 10 Feb 2025 12:25:59 +0100 Subject: [PATCH] fix --- .github/workflows/pip-install.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pip-install.yaml b/.github/workflows/pip-install.yaml index 403f712..e341150 100644 --- a/.github/workflows/pip-install.yaml +++ b/.github/workflows/pip-install.yaml @@ -15,8 +15,8 @@ jobs: run: python -m audiblez --help - name: check it runs as script run: audiblez --help - - name: install ffmpeg and espeak-ng - run: sudo apt update && sudo apt-get install ffmpeg espeak-ng + - name: install ffmpeg, espeak-ng, wxgtk + run: sudo apt-get update && sudo apt-get install ffmpeg espeak-ng libgtk-3-dev --fix-missing - name: download test epub run: wget https://github.com/daisy/epub-accessibility-tests/releases/download/fundamental-2.0/Fundamental-Accessibility-Tests-Basic-Functionality-v2.0.0.epub - name: create audiobook @@ -30,6 +30,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.12' + - name: install ffmpeg, espeak-ng, wxgtk + run: sudo apt-get update && sudo apt-get install ffmpeg espeak-ng libgtk-3-dev --fix-missing - name: Install audiblez run: python -m pip install audiblez - name: Check it runs as module @@ -43,6 +45,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.10' + - name: install ffmpeg, espeak-ng, wxgtk + run: sudo apt-get update && sudo apt-get install ffmpeg espeak-ng libgtk-3-dev --fix-missing - name: Install audiblez run: python -m pip install audiblez - name: Check it runs as module