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 3521037c4513a69706a1956e20647815d3d24af2
parent cb0bc2700da028596b9c00c627fdb9099bc97dc8
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date:   Thu,  8 Oct 2020 00:08:41 +0100

Disable sde on MacOS 15

Diffstat:
Mazure-pipelines.yml | 47+++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+), 0 deletions(-)

diff --git a/azure-pipelines.yml b/azure-pipelines.yml @@ -120,6 +120,53 @@ jobs: brew install ninja ci/run.sh build-release -DENABLE_CAPI_BUILD=ON -DUSE_SDE=ON -DARCH_TESTS=sse2,ssse3,sse41,avx,avx2,avx512 -DCPU_ARCH=sse2 -DENABLE_DFT_MULTIARCH=ON -DCMAKE_BUILD_TYPE=Release +- job: macOS15_x86_64_Clang_Release + timeoutInMinutes: 120 + strategy: + matrix: + xcode12: + XCODE_VER: 12 + xcode11: + XCODE_VER: 11.7 + pool: + vmImage: 'macOS-10.15' + 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 -DENABLE_CAPI_BUILD=ON -DARCH_TESTS=sse2,ssse3,sse41,avx -DCPU_ARCH=detect -DENABLE_DFT_MULTIARCH=ON -DCMAKE_BUILD_TYPE=Release + +- job: macOS_x86_64_Clang_Release + timeoutInMinutes: 120 + strategy: + matrix: + xcode11: + XCODE_VER: 11.3 + xcode10: + XCODE_VER: 10.3 + pool: + vmImage: 'macOS-10.14' + steps: + - bash: | + set -e + + curl -o "$(Agent.TempDirectory)/sde.tar.bz2" -L $(SDE_URL_MACOS2) + mkdir -p "$(Agent.TempDirectory)/sde-bin" + tar -C "$(Agent.TempDirectory)/sde-bin" -xjf "$(Agent.TempDirectory)/sde.tar.bz2" --strip 1 + export PATH=$PATH:$(Agent.TempDirectory)/sde-bin + sde64 -help || true + + # sudo spctl --master-disable + # sudo /usr/sbin/DevToolsSecurity –enable + sudo security authorizationdb write system.privilege.taskport allow + + sde64 -chip_check_exe_only -- $(Agent.TempDirectory)/sde-bin/intel64/nullapp + + /bin/bash -c "sudo xcode-select -s /Applications/Xcode_$(XCODE_VER).app/Contents/Developer" + brew install ninja + ci/run.sh build-release -DENABLE_CAPI_BUILD=ON -DUSE_SDE=ON -DARCH_TESTS=sse2,ssse3,sse41,avx,avx2,avx512 -DCPU_ARCH=sse2 -DENABLE_DFT_MULTIARCH=ON -DCMAKE_BUILD_TYPE=Release + - job: iOS_ARM_Clang_Release timeoutInMinutes: 120 pool: