From 3e3ccab35c6cf37b989c1f1e3340a3eb731317e8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 2 Mar 2026 18:03:45 +0100 Subject: [PATCH] Use go-httpbin v2.2.0.0 in AppVeyor CI The next 2.21 version requires Go version newer than the one available there and installing it takes extra time and fails completely when using (too old?) Visual Studio 2015 image. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 73faddcda1..91423081f0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -89,7 +89,7 @@ before_test: if not exist "%go_exe%" appveyor DownloadFile https://go.dev/dl/%go_exe% msiexec /i %go_exe% INSTALLDIR="%GOROOT%" /q go version - go install github.com/mccutchen/go-httpbin/v2/cmd/go-httpbin@v2 + go install github.com/mccutchen/go-httpbin/v2/cmd/go-httpbin@v2.20.0 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 }