From a1aec489ca4a50ee1e82140827e05365684b591b Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Fri, 1 Sep 2017 23:59:55 +0200 Subject: [PATCH 1/6] + first AppVeyor config --- appveyor.yml | 92 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..87bb724ef --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,92 @@ +# Notes: +# - Minimal appveyor.yml file is an empty file. All sections are optional. +# - Indent each level of configuration with 2 spaces. Do not use tabs! +# - All section names are case-sensitive. +# - Section names should be unique on each level. + +#---------------------------------# +# general configuration # +#---------------------------------# + +# version format +version: 2.0.2.{build} + +# you can use {branch} name in version format too +# version: 1.0.{build}-{branch} + +# branches to build +branches: + # whitelist + only: + - master + + # blacklist + except: + - gh-pages + +# Do not build on tags (GitHub only) +skip_tags: true + +#---------------------------------# +# environment configuration # +#---------------------------------# + +# Operating system (build VM template) +os: Windows Server 2012 + +image: + - Visual Studio 2017 +# - Visual Studio 2015 + +# scripts that are called at very beginning, before repo cloning +init: + - git config --global core.autocrlf input + +#---------------------------------# +# build configuration # +#---------------------------------# + +# build platform, i.e. x86, x64, Any CPU. This setting is optional. +#platform: Any CPU + +# to add several platforms to build matrix: +platform: + - Win32 + - x64 + +# build Configuration, i.e. Debug, Release, etc. +#configuration: Release + +# to add several configurations to build matrix: +configuration: + - Debug + - Release + +build: + project: Notepad3.sln + parallel: true + verbosity: minimal +test: off + +# Artifact paths are relative to C:\projects\notepad2-mod\ +artifacts: + - path: bin\**\*.* + name: All + +#deploy: +# - provider: S3 +# access_key_id: XXXXXXXXXXXXXXXXXXXX +# secret_access_key: +# secure: --------------------------------------------------------- +# region: us-west-2 +# bucket: notepad3 +# artifact: All +# set_public: true +# encrypt: true +#notifications: +#- provider: Email +# to: +# - rizonesoft+github@gmail.com +# on_build_success: true +# on_build_failure: true +# on_build_status_changed: true From ebc3020297d0dcc054a93a5933f2d9f1a14700e7 Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Sat, 2 Sep 2017 00:16:02 +0200 Subject: [PATCH 2/6] + try fix parsing error --- appveyor.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 87bb724ef..3d05ba89f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -71,8 +71,11 @@ test: off # Artifact paths are relative to C:\projects\notepad2-mod\ artifacts: - path: bin\**\*.* - name: All +# - name: All +matrix: + fast_finish: true + #deploy: # - provider: S3 # access_key_id: XXXXXXXXXXXXXXXXXXXX From 444beff925984850322ba4336e6bf56dd647ff4a Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Sat, 2 Sep 2017 00:26:00 +0200 Subject: [PATCH 3/6] + try fixing .vcxproj file --- src/Notepad3.vcxproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Notepad3.vcxproj b/src/Notepad3.vcxproj index 293462138..76a05bece 100644 --- a/src/Notepad3.vcxproj +++ b/src/Notepad3.vcxproj @@ -18,6 +18,7 @@ x64 + $(VCTargetsPath11) Win32Proj @@ -54,7 +55,6 @@ false true - From 0790f7496f33934db23aa6c5d93f29ffcfbe5650 Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Sat, 2 Sep 2017 00:45:45 +0200 Subject: [PATCH 4/6] + next try for .vcxproj --- src/Notepad3.vcxproj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Notepad3.vcxproj b/src/Notepad3.vcxproj index 293462138..82fcb8592 100644 --- a/src/Notepad3.vcxproj +++ b/src/Notepad3.vcxproj @@ -19,7 +19,6 @@ - $(VCTargetsPath11) Win32Proj {BAAD32AB-CD47-12FD-873C-0BBC204B7641} Notepad3 From ac11c6bdaa2f257a7264c65dc7e15c5eece7beb2 Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Sat, 2 Sep 2017 00:54:50 +0200 Subject: [PATCH 5/6] + next try --- src/Notepad3.vcxproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Notepad3.vcxproj b/src/Notepad3.vcxproj index 1aefe5e28..82fcb8592 100644 --- a/src/Notepad3.vcxproj +++ b/src/Notepad3.vcxproj @@ -18,7 +18,6 @@ x64 - Win32Proj {BAAD32AB-CD47-12FD-873C-0BBC204B7641} @@ -54,6 +53,7 @@ false true + From a092fbb09da14475a2688d5578edff52e4714293 Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Sat, 2 Sep 2017 01:06:03 +0200 Subject: [PATCH 6/6] - remove Debug build - not needed here ;-) --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 3d05ba89f..080ddc987 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -59,8 +59,8 @@ platform: # to add several configurations to build matrix: configuration: - - Debug - Release +# - Debug build: project: Notepad3.sln