From 8037a0013126493e97ec74667b095f3b7bdc95ad Mon Sep 17 00:00:00 2001 From: Matthias Geier Date: Thu, 5 Sep 2024 21:25:40 +0200 Subject: [PATCH] DO NOT MERGE! Use "master" branch from PortAudio repo --- .github/workflows/build-libs.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-libs.yml b/.github/workflows/build-libs.yml index ad6faf0..23d79f9 100644 --- a/.github/workflows/build-libs.yml +++ b/.github/workflows/build-libs.yml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@v4 with: repository: PortAudio/portaudio - ref: v19.7.0 + ref: master path: portaudio - name: cmake configure run: | @@ -58,14 +58,8 @@ jobs: uses: actions/checkout@v4 with: repository: PortAudio/portaudio - ref: v19.7.0 + ref: master path: portaudio - # The next portaudio release will have an auto-download feature: - - name: download and extract ASIO SDK - if: matrix.asio - run: | - curl -L -o asiosdk.zip https://www.steinberg.net/asiosdk - 7z x asiosdk.zip - name: cmake configure run: | cmake -S portaudio -B build -A ${{ matrix.platform }} -D PA_USE_ASIO=${{ matrix.asio && 'ON' || 'OFF' }}