Skip to content

Commit 37ecc11

Browse files
authored
fix: test MSRV 1.70 in CI and ALSA stream shutdown race (#1076)
* fix: test MSRV 1.70 in CI and use AtomicBool in ALSA * ci: use platform-specific MSRV in CI and docs fix: bump WASM minimum Rust version to 1.77 * fix: set Android example to Rust 2021 edition * ci: refactor workflows * ci: pin iOS example build to aarch64 simulator
1 parent ca5ae56 commit 37ecc11

File tree

10 files changed

+265
-189
lines changed

10 files changed

+265
-189
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Setup ASIO SDK
2+
description: Downloads and sets up the ASIO SDK for Windows builds
3+
4+
runs:
5+
using: composite
6+
steps:
7+
- name: Download and setup ASIO SDK
8+
shell: pwsh
9+
run: |
10+
curl -L -o asio.zip https://www.steinberg.net/asiosdk
11+
7z x -oasio asio.zip
12+
move asio\*\* asio\
13+
choco install asio4all
14+
choco install llvm

0 commit comments

Comments
 (0)