Merge pull request #343 from Luni-4/fix-windows-actions

Update Github Actions for Windows
This commit is contained in:
est31 2019-10-26 12:46:55 +02:00 committed by GitHub
commit 80d892d50c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -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