From 3649f93b1c70bad62da150266dbfe1a8cd0ae1ac Mon Sep 17 00:00:00 2001 From: Silarn Date: Wed, 8 May 2019 23:10:28 -0500 Subject: [PATCH 1/3] Set appveyor image to VS 2019 Preview --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 1bb07f3..e104001 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ version: 1.0.{build} skip_branch_with_pr: true -image: Visual Studio 2017 +image: Visual Studio 2019 Preview environment: WEBHOOK_URL: secure: gOKbXaZM9ImtMD5XrYITvdyZUW/az082G9OIN1EC1Vbg57wBaeLhi49uGjxPw5GVujHku6kxN6ab89zhbS5GVeluR76GM83IbKV4Sh7udXzoYZZdg6YudtYHzdhCgUeiedpswbuczTq9ceIkkfSEWZuh/lMAAVVwvcGsJAnoPFw= From 945bdd7be280aba9a557d034b85713f26affcada Mon Sep 17 00:00:00 2001 From: Silarn Date: Tue, 21 May 2019 23:46:00 -0500 Subject: [PATCH 2/3] Add logs to build artifacts on CI fail, commit translation changes --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index e104001..7d3415f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,5 +19,7 @@ on_success: - ps: ./send.ps1 success $env:WEBHOOK_URL on_failure: - ps: Set-Location -Path $env:APPVEYOR_BUILD_FOLDER + - ps: Push-AppveyorArtifact ${env:APPVEYOR_BUILD_FOLDER}\stdout.log + - ps: Push-AppveyorArtifact ${env:APPVEYOR_BUILD_FOLDER}\stderr.log - ps: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1 - ps: ./send.ps1 failure $env:WEBHOOK_URL \ No newline at end of file From 05df5f4b3964b4710383d965a0a30d3aac204f6d Mon Sep 17 00:00:00 2001 From: Silarn Date: Wed, 22 May 2019 02:04:12 -0500 Subject: [PATCH 3/3] Set optimization for release builds --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c8d5e8..874d13e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12) -ADD_COMPILE_OPTIONS($<$:/MP>) +ADD_COMPILE_OPTIONS($<$:/MP> $<$:$<$:/O2>> $<$:$<$:/O2>>) SET(PROJ_NAME tool_configurator LANGUAGES NONE)