From 2c6e32f6fffc9c11ba609f9f141e8db832a9ccda Mon Sep 17 00:00:00 2001 From: vitaut Date: Fri, 7 Aug 2015 06:41:07 -0700 Subject: [PATCH] Simplify appveyor config --- appveyor.yml | 8 ++++---- support/appveyor-build.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index dfebef22..2f357641 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,14 +1,14 @@ +configuration: + - Debug + - Release + environment: CTEST_OUTPUT_ON_FAILURE: 1 matrix: - BUILD: msvc - CONFIG: Debug - BUILD: msvc - CONFIG: Release - BUILD: mingw - CONFIG: Debug - BUILD: mingw - CONFIG: Release build_script: - python support/appveyor-build.py diff --git a/support/appveyor-build.py b/support/appveyor-build.py index 9f4e30ce..89821328 100755 --- a/support/appveyor-build.py +++ b/support/appveyor-build.py @@ -5,7 +5,7 @@ import os from subprocess import check_call build = os.environ['BUILD'] -config = os.environ['CONFIG'] +config = os.environ['CONFIGURATION'] path = os.environ['PATH'] cmake_command = ['cmake', '-DFMT_PEDANTIC=ON', '-DCMAKE_BUILD_TYPE=' + config] if build == 'mingw':