From 6bc706b6a6eebb0524ddaa6f9dd052ac04032dc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simo=20F=C3=A4lt?= Date: Tue, 1 Jun 2021 09:09:10 +0300 Subject: [PATCH] Remove Conan provisioning script It is breaking currently and it doesn't provide anything which IFW would need. Change-Id: Id2187fa98fb024921edeac9533396dd6caa27d37 Reviewed-by: Toni Saario (cherry picked from commit 00527b1fb4494be11f526b8de260c92f61e2bf06) Reviewed-by: Heikki Halmet --- .../qtci-windows-10-x86_64/11-conan.ps1 | 69 ------------------- 1 file changed, 69 deletions(-) delete mode 100644 coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1 diff --git a/coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1 b/coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1 deleted file mode 100644 index 09c5b21c..00000000 --- a/coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1 +++ /dev/null @@ -1,69 +0,0 @@ -. "$PSScriptRoot\..\common\windows\conan.ps1" - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir MSVC2015-x86_64 ` - -Arch x86_64 ` - -Compiler "Visual Studio" ` - -CompilerVersion 14 ` - -CompilerRuntime MD - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir MSVC2015-x86 ` - -Arch x86 ` - -Compiler "Visual Studio" ` - -CompilerVersion 14 ` - -CompilerRuntime MD - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir MSVC2017-x86_64 ` - -Arch x86_64 ` - -Compiler "Visual Studio" ` - -CompilerVersion 15 ` - -CompilerRuntime MD - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir MSVC2017-x86 ` - -Arch x86 ` - -Compiler "Visual Studio" ` - -CompilerVersion 15 ` - -CompilerRuntime MD - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir MSVC2019-x86_64 ` - -Arch x86_64 ` - -Compiler "Visual Studio" ` - -CompilerVersion 16 ` - -CompilerRuntime MD - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir MSVC2019-x86 ` - -Arch x86 ` - -Compiler "Visual Studio" ` - -CompilerVersion 16 ` - -CompilerRuntime MD - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir Mingw-x86 ` - -Arch x86 ` - -Compiler "gcc" ` - -CompilerVersion 8 ` - -CompilerLibcxx "libstdc++" ` - -CompilerException "dwarf2" ` - -CompilerThreads "posix" - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir Mingw-x86_64 ` - -Arch x86_64 ` - -Compiler "gcc" ` - -CompilerVersion 8 ` - -CompilerLibcxx "libstdc++" ` - -CompilerException "seh" ` - -CompilerThreads "posix"