Browse Source

switched MinGW GCC back to version 8.1

pull/1278/head
Silvio Kunaschk 6 years ago
parent
commit
629cc779b0
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      .ci/conan_profile_mingw_gcc8.1
  2. +1
    -1
      azure-pipelines.yml

.ci/conan_profile_mingw8.2 → .ci/conan_profile_mingw_gcc8.1 View File

@@ -1,11 +1,11 @@
# this is a conan profile for MinGW GCC 8.2
# this is a conan profile for MinGW GCC 8.1
[settings] [settings]
os=Windows os=Windows
os_build=Windows os_build=Windows
arch=x86_64 arch=x86_64
arch_build=x86_64 arch_build=x86_64
compiler=gcc compiler=gcc
compiler.version=8.2
compiler.version=8.1
compiler.exception=seh compiler.exception=seh
compiler.libcxx=libstdc++11 compiler.libcxx=libstdc++11
compiler.threads=posix compiler.threads=posix

+ 1
- 1
azure-pipelines.yml View File

@@ -105,7 +105,7 @@ jobs:
conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
mkdir build mkdir build
cd build cd build
conan install .. -s build_type=Release --profile ../.ci/conan_profile_mingw8.2 --build=missing
conan install .. -s build_type=Release --profile ../.ci/conan_profile_mingw_gcc8.1 --build=missing
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release .. cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release ..
cmake --build . cmake --build .
displayName: build VCVRack displayName: build VCVRack


Loading…
Cancel
Save