fix appveyor.yml
This commit is contained in:
parent
f172f10d36
commit
0583ad8839
46
appveyor.yml
46
appveyor.yml
|
|
@ -2,20 +2,27 @@ version: 0.9.{build}
|
||||||
|
|
||||||
skip_tags: true
|
skip_tags: true
|
||||||
|
|
||||||
|
# fetch repository as zip archive
|
||||||
|
shallow_clone: true
|
||||||
|
|
||||||
# pull_requests:
|
# pull_requests:
|
||||||
# do_not_increment_build_number: true
|
# do_not_increment_build_number: true
|
||||||
|
|
||||||
|
# Do not build feature branch with open Pull Requests
|
||||||
|
# skip_branch_with_pr: true
|
||||||
|
|
||||||
# image:
|
# image:
|
||||||
# - Visual Studio 2019
|
# - Visual Studio 2019
|
||||||
# - Visual Studio 2017
|
# - Visual Studio 2017
|
||||||
# - Visual Studio 2015
|
# - Visual Studio 2015
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
time_out_mins: 5
|
global:
|
||||||
job_to_deploy: 6 # 3(images) * 1(platform) * 2(configuration)
|
time_out_mins: 5
|
||||||
flag_to_deploy: false
|
job_to_deploy: 6 # 3(images) * 1(platform) * 2(configuration)
|
||||||
APPVEYOR_API_TOKEN:
|
flag_to_deploy: false
|
||||||
secure: UJFCbRNHMOqQg3e3Kv/ZnaIqqwXAt+5HDldetaZsZ5E=
|
appveyor_api_token:
|
||||||
|
secure: UJFCbRNHMOqQg3e3Kv/ZnaIqqwXAt+5HDldetaZsZ5E=
|
||||||
matrix:
|
matrix:
|
||||||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
||||||
VS_PLATFORM_TOOLSET: v142
|
VS_PLATFORM_TOOLSET: v142
|
||||||
|
|
@ -24,6 +31,12 @@ environment:
|
||||||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
||||||
VS_PLATFORM_TOOLSET: v140
|
VS_PLATFORM_TOOLSET: v140
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
fast_finish: true # set this flag to immediately finish build once one of the jobs fails
|
||||||
|
# allow_failures:
|
||||||
|
# - platform: x86
|
||||||
|
# configuration: Debug
|
||||||
|
|
||||||
skip_commits:
|
skip_commits:
|
||||||
message: /\[chore\]/
|
message: /\[chore\]/
|
||||||
|
|
||||||
|
|
@ -34,14 +47,6 @@ only_commits:
|
||||||
- scripts/**/*.ps1
|
- scripts/**/*.ps1
|
||||||
- appveyor.yml
|
- appveyor.yml
|
||||||
|
|
||||||
for:
|
|
||||||
-
|
|
||||||
branches:
|
|
||||||
except:
|
|
||||||
- master
|
|
||||||
only_commits:
|
|
||||||
message: /\[build\]/
|
|
||||||
|
|
||||||
configuration:
|
configuration:
|
||||||
- Debug
|
- Debug
|
||||||
- Release
|
- Release
|
||||||
|
|
@ -62,8 +67,19 @@ build:
|
||||||
project: projects/Kiwano.sln
|
project: projects/Kiwano.sln
|
||||||
verbosity: minimal
|
verbosity: minimal
|
||||||
|
|
||||||
after_build:
|
for:
|
||||||
- ps: .\scripts\appveyor\wait_for_other_jobs.ps1
|
-
|
||||||
|
branches:
|
||||||
|
except:
|
||||||
|
- master
|
||||||
|
only_commits:
|
||||||
|
message: /\[build\]/
|
||||||
|
-
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
after_build:
|
||||||
|
- ps: .\scripts\appveyor\wait_for_other_jobs.ps1
|
||||||
|
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: projects/output/**/*.lib
|
- path: projects/output/**/*.lib
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,8 @@
|
||||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
// THE SOFTWARE.
|
// THE SOFTWARE.
|
||||||
|
|
||||||
#include "window.h"
|
#include "Window.h"
|
||||||
#include "logs.h"
|
#include "Logger.h"
|
||||||
|
|
||||||
#define WINDOW_STYLE WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX
|
#define WINDOW_STYLE WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX
|
||||||
#define WINDOW_FULLSCREEN_STYLE WS_CLIPCHILDREN | WS_POPUP
|
#define WINDOW_FULLSCREEN_STYLE WS_CLIPCHILDREN | WS_POPUP
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue