From 1495c63443f051cadaebbd3363c0d7a8ab29874b Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Thu, 15 Jun 2023 14:33:26 +0200 Subject: [PATCH] Update azure-pipelines.yml --- azure-pipelines.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b1cf6d3cc..9935caf90 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -282,8 +282,10 @@ jobs: brew update brew install conan conan profile detect - wget https://gist.githubusercontent.com/martin-frbg/dae99830b42cfc5bf4e805df211875e1/raw/90f27f2298ddc385b1badb09ebdf19a416cad227/conanfile.py - conan build . # echo -e "from conan import ConanFile, CMake\n\nclass OpenBLASConan(ConanFile):\n def build(self):\n tc=CMakeToolchain(self)\n tc.generate\n\n cmake=CMake(self)\n cmake.configure()\n cmake.build()\n" >conanfile.py + wget https://gist.githubusercontent.com/martin-frbg/dae99830b42cfc5bf4e805df211875e1/raw/a33310fa761ebe9311a25330c94fe3b258ff5298/conanfile.py + conan build . + ls -l lib + cmake --install # conan build . # cmake -G ""Xcode"" -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="OpenBLAS" -DNOFORTRAN="ON" -DBUILD_WITHOUT_LAPACK="ON" -DBUILD_LAPACK_DEPRECATED="OFF" -DBUILD_TESTING="OFF" -DUSE_THREAD="ON" -DMSVC_STATIC_CRT="OFF" -DBUILD_STATIC_LIBS="ON" -DBUILD_SHARED_LIBS="OFF" -DONLY_CBLAS="1" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" "OpenBLAS" # xcodebuild -project OpenBLAS.xcodeproj build -target ALL_BUILD -configuration RelWithDebInfo -hideShellScriptEnvironment