pgweb/appveyor.yml
Dan Sosedoff bbe9a97d05
Switch go build target to 1.19 (#603)
* Switch go build target to 1.19

* Add make docker-run target for testing new images

* Bump appveyor go version

* Fix appveyor paths
2022-12-06 18:34:08 -06:00

31 lines
679 B
YAML

clone_folder: c:\gopath\src\github.com\sosedoff\pgweb
environment:
GOPATH: c:\gopath
GOROOT: c:\goroot119\go
GOTOOLDIR: c:\goroot119\go\pkg\tool\windows_amd64
CGO_ENABLED: 0
services:
- postgresql
install:
- ps: mkdir c:\goroot119
- ps: iwr -outf c:\goroot119\go1.19.windows-amd64.zip https://golang.org/dl/go1.19.windows-amd64.zip
- ps: Expand-Archive c:\goroot119\go1.19.windows-amd64.zip -DestinationPath c:\goroot119
- set PATH=%GOPATH%\bin;%PATH%
- set PATH=%GOROOT%\bin;%PATH%
- echo %PATH%
- echo %GOPATH%
- cd %APPVEYOR_BUILD_FOLDER%
- go env
- go version
build_script:
- go build
test_script:
- go test -cover ./...
deploy: false