From 2a62f42e04ce4307a96fc44c46136521fe5a8c7e Mon Sep 17 00:00:00 2001 From: Luni-4 Date: Sat, 26 Oct 2019 12:22:50 +0200 Subject: [PATCH] Update Github Actions for Windows --- .github/workflows/cpal.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cpal.yml b/.github/workflows/cpal.yml index 41dd9bd..8ecbbaa 100644 --- a/.github/workflows/cpal.yml +++ b/.github/workflows/cpal.yml @@ -76,10 +76,9 @@ jobs: - name: Install ASIO SDK env: LINK: https://www.steinberg.net/asiosdk - shell: powershell run: | - curl.exe -L -o asio.zip $env:LINK - 7z.exe x -oasio asio.zip + curl -L -o asio.zip $env:LINK + 7z x -oasio asio.zip move asio\*\* asio\ - name: Install ASIO4ALL run: choco install asio4all @@ -95,5 +94,5 @@ jobs: run: cargo test --all --no-default-features --verbose - name: Run all features run: | - set CPAL_ASIO_DIR=%GITHUB_WORKSPACE%\asio + $Env:CPAL_ASIO_DIR = "$Env:GITHUB_WORKSPACE\asio" cargo test --all --all-features --verbose