From 4c2bae8e99e32f825f54d0dbba19706b22daea94 Mon Sep 17 00:00:00 2001 From: DJ2LS <75909252+DJ2LS@users.noreply.github.com> Date: Tue, 26 Oct 2021 16:54:34 +0200 Subject: [PATCH] Update build-project.yml --- .github/workflows/build-project.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-project.yml b/.github/workflows/build-project.yml index 360e3e09..4951a1d2 100644 --- a/.github/workflows/build-project.yml +++ b/.github/workflows/build-project.yml @@ -25,7 +25,8 @@ jobs: uses: actions/setup-python@v2 with: python-version: 3.9 - - name: Install Windows dependencies + + - name: Install Python dependencies if: matrix.os == 'windows-latest' run: | python -m pip install --upgrade pip @@ -35,9 +36,15 @@ jobs: pip install ujson pip install pyserial pip install numpy - curl.exe --output PyAudio-0.2.11-cp39-cp39-win_amd64.whl --url https://download.lfd.uci.edu/pythonlibs/y2rycu7g/PyAudio-0.2.11-cp39-cp39-win_amd64.whl + # curl.exe --output PyAudio-0.2.11-cp39-cp39-win_amd64.whl --url https://download.lfd.uci.edu/pythonlibs/y2rycu7g/PyAudio-0.2.11-cp39-cp39-win_amd64.whl + # pip install PyAudio-0.2.11-cp39-cp39-win_amd64.whl + + - name: Install Pyaudio + if: matrix.os == 'windows-latest' + working-directory: tnc/pyaudio/windows + run: | pip install PyAudio-0.2.11-cp39-cp39-win_amd64.whl - + - name: Build DAEMON and TNC Windows if: matrix.os == 'windows-latest'