From 3af16c67af330d94f3bf5904c015eb46ff5fd01d Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Tue, 5 Sep 2023 20:24:06 +0200 Subject: [PATCH] :construction_worker: Bump scream version The (truncated) error log was: ``` Updating drivers for *Scream from D:\a\pycaw\pycaw\Scream\Install\driver\x64\Scream.inf. Error: The operation was canceled. ``` --- .github/workflows/tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fc173ba..59957db 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,10 +20,13 @@ jobs: - uses: actions/checkout@v4 # Virtual network sound card for Microsoft Windows - name: Install Scream + env: + VERSION: '4.0' shell: powershell run: | - Invoke-WebRequest https://github.com/duncanthrax/scream/releases/download/3.8/Scream3.8.zip -OutFile Scream3.8.zip - Expand-Archive -Path Scream3.8.zip -DestinationPath Scream + # https://github.com/duncanthrax/scream/releases/download/4.0/Scream4.0.zip + Invoke-WebRequest https://github.com/duncanthrax/scream/releases/download/${{ env.VERSION }}/Scream${{ env.VERSION }}.zip -OutFile Scream${{ env.VERSION }}.zip + Expand-Archive -Path Scream${{ env.VERSION }}.zip -DestinationPath Scream Import-Certificate -FilePath Scream\Install\driver\x64\Scream.cat -CertStoreLocation Cert:\LocalMachine\TrustedPublisher Scream\Install\helpers\devcon-x64.exe install Scream\Install\driver\x64\Scream.inf *Scream - uses: actions/setup-python@v5