1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-24 13:48:49 +08:00
hybridgroup.gobot/appveyor.yml
Ron Evans 5faa7516f2 core: updating to use go modules in build and completely remove dep
Signed-off-by: Ron Evans <ron@hybridgroup.com>
2019-10-15 10:26:40 +02:00

26 lines
479 B
YAML

version: "{build}"
os: Windows Server 2012 R2
clone_folder: c:\gopath\src\gobot.io\x\gobot
environment:
GOPATH: c:\gopath
GOROOT: c:\go
GO111MODULE: on
install:
- echo %PATH%
- echo %GOPATH%
- go version
- go env
- go get -d ./...
- go get github.com/stretchr/testify
build_script:
- go test -v -cpu=2 .
- go test -v -cpu=2 ./drivers/aio
- go test -v -cpu=2 ./drivers/gpio
- go test -v -cpu=2 ./drivers/i2c
- go test -v -cpu=2 ./platforms/firmata/...