forked from wxWidgets/wxWidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
115 lines (104 loc) · 3.39 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
version: '{build}'
branches:
only:
- master
skip_commits:
files:
- demos/
- docs/
- interface/
- locale/
- misc/
- include/wx/dfb/
- src/dfb/
- include/wx/gtk/
- src/gtk/
- include/wx/osx/
- src/osx/
- include/wx/unix/
- src/unix/
- include/wx/x11/
- src/x11/
- '**/*.md'
- .circleci/
- .github/ISSUE_TEMPLATE/
- .github/workflows/
- build/tools/before_install.sh
- build/tools/httpbin.sh
environment:
GOVERSION: "1.22.1"
GOPATH: c:\gopath
matrix:
- TOOLSET: msbuild
CONFIGURATION: DLL Release
ARCH: x64
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
- TOOLSET: msbuild
CONFIGURATION: Debug
ARCH: x64
wxUSE_UNICODE_UTF8: 1
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
- TOOLSET: nmake
VS: '14.0'
BUILD: debug
ARCH: amd64
wxUSE_WEBVIEW_EDGE: 1
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- TOOLSET: cmake
GENERATOR: 'Visual Studio 15 2017'
SHARED: ON
CONFIGURATION: Release
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- TOOLSET: cmake_qt
GENERATOR: 'Visual Studio 16 2019'
ARCH: x64
SHARED: ON
CONFIGURATION: Release
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
clone_depth: 50
install: git submodule update --init
init:
- ps: |
if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
throw "There are newer queued builds for this pull request, failing early." }
before_build:
- ps: |
$env:PATH = $env:PATH -replace "C:\\Program Files\\Git\\usr\\bin",""
if (-not (Test-Path env:wxUSE_UNICODE_UTF8)) { $env:wxUSE_UNICODE_UTF8 = '0' }
if (-not (Test-Path env:wxUSE_WEBVIEW_EDGE)) { $env:wxUSE_WEBVIEW_EDGE = '0' }
if (($env:TOOLSET -ne "msys2") -and ($env:TOOLSET -ne "cygwin")) {
$txt = gc include\wx\msw\setup.h
Write-Output $txt |
%{$_ -replace "define wxUSE_UNICODE_UTF8 0", "define wxUSE_UNICODE_UTF8 $env:wxUSE_UNICODE_UTF8"} |
%{$_ -replace "define wxUSE_WEBVIEW_EDGE 0", "define wxUSE_WEBVIEW_EDGE $env:wxUSE_WEBVIEW_EDGE"} |
sc include\wx\msw\setup.h
}
build_script: c:\projects\wxwidgets\build\tools\appveyor.bat
before_test:
- cmd: |
echo Getting and launching httpbin.
rmdir %GOROOT% /s /q
mkdir %GOROOT%
appveyor DownloadFile https://go.dev/dl/go%GOVERSION%.windows-amd64.msi
msiexec /i go%GOVERSION%.windows-amd64.msi INSTALLDIR="%GOROOT%" /q
go version
go install github.com/mccutchen/go-httpbin/v2/cmd/go-httpbin@v2
set PATH=%PATH%;%GOPATH%\bin
- ps: |
Start-Job -Name wx_httpbin { go-httpbin -host 127.0.0.1 -port 8081 2>&1 > c:\projects\wxwidgets\httpbin.log }
Start-Sleep -Seconds 5
curl.exe --silent --show-error http://127.0.0.1:8081/ip > $null
if ($lastExitCode -eq "0") {
$env:WX_TEST_WEBREQUEST_URL="http://127.0.0.1:8081"
}
else {
Write-Error "Disabling wxWebRequest tests as launching httpbin failed, log follows:"
Get-Content c:\projects\wxwidgets\httpbin.log
$env:WX_TEST_WEBREQUEST_URL="0"
}
test_script: c:\projects\wxwidgets\build\tools\appveyor-test.bat
after_test:
- ps: |
Stop-Job -Name wx_httpbin