kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit 6158120b567ccef6242c506a858dae5a3e1ef7d3
parent 475023fe63b61360f2f5182e2f0ce7d24389bc33
Author: [email protected] <[email protected]>
Date:   Wed, 13 Nov 2019 15:00:46 +0000

Add new Xcode & MSVC2019

Diffstat:
Mazure-pipelines.yml | 42++++++++++++++++++++++++++++++++++++++----
1 file changed, 38 insertions(+), 4 deletions(-)

diff --git a/azure-pipelines.yml b/azure-pipelines.yml @@ -66,16 +66,12 @@ jobs: timeoutInMinutes: 120 strategy: matrix: - xcode10.1: - XCODE_VER: 10.1 xcode10: XCODE_VER: 10 xcode9.4.1: XCODE_VER: 9.4.1 xcode9.0.1: XCODE_VER: 9.0.1 - xcode8.3.3: - XCODE_VER: 8.3.3 pool: vmImage: 'macOS-10.13' steps: @@ -84,6 +80,25 @@ jobs: /bin/bash -c "sudo xcode-select -s /Applications/Xcode_$(XCODE_VER).app/Contents/Developer" brew install ninja ci/run.sh build-release -DCPU_ARCH=detect -DCMAKE_BUILD_TYPE=Release + +- job: macOS14_x86_64_Clang_Release + timeoutInMinutes: 120 + strategy: + matrix: + xcode11.2: + XCODE_VER: 11.2 + xcode11: + XCODE_VER: 11 + xcode10.3: + XCODE_VER: 10.3 + pool: + vmImage: 'macOS-10.14' + steps: + - bash: | + set -e + /bin/bash -c "sudo xcode-select -s /Applications/Xcode_$(XCODE_VER).app/Contents/Developer" + brew install ninja + ci/run.sh build-release -DCPU_ARCH=detect -DCMAKE_BUILD_TYPE=Release - job: iOS_ARM_Clang_Release timeoutInMinutes: 120 @@ -248,3 +263,22 @@ jobs: set PATH=%PATH:C:\Strawberry\c\bin;=% set PATH=C:\sde;%PATH% ci\run.cmd build-release -DARCH_TESTS=OFF -DUSE_SDE=ON -DCPU_ARCH=avx512 -DENABLE_DFT=OFF -DCMAKE_BUILD_TYPE=Release + +- job: Windows_MSVC_x86_64_MSVC2019_Release + timeoutInMinutes: 120 + pool: + vmImage: 'windows-2019' + steps: + - script: | + choco uninstall mingw + choco install ninja + + curl -o "$(Agent.TempDirectory)/sde.zip" -L $(SDEURL) + "C:\Program Files\7-Zip\7z.exe" x -oC:\sde "$(Agent.TempDirectory)/sde.zip" + + call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" + set PATH=%PATH:C:\tools\mingw64\bin;=% + set PATH=%PATH:C:\Program Files\Git\mingw64\bin;=% + set PATH=%PATH:C:\Strawberry\c\bin;=% + set PATH=C:\sde;%PATH% + ci\run.cmd build-release -DARCH_TESTS=ON -DUSE_SDE=ON -DCPU_ARCH=avx512 -DENABLE_DFT=OFF -DCMAKE_BUILD_TYPE=Release