-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathappveyor.yml
More file actions
28 lines (23 loc) · 777 Bytes
/
appveyor.yml
File metadata and controls
28 lines (23 loc) · 777 Bytes
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
version: "{build}"
image: Visual Studio 2019
clone_folder: c:\gopath\src\gobot.io\x\gobot
environment:
PATH: C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin;%PATH%
GOPATH: c:\gopath
before_test:
- go version
- go env
build_script:
- go test -v -cpu=2 .
- go test -v -cpu=2 ./drivers/aio/...
- go test -v -cpu=2 ./drivers/ble/.
- go test -v -cpu=2 ./drivers/ble/parrot/.
- go test -v -cpu=2 ./drivers/ble/sphero/.
- go test -v -cpu=2 ./drivers/serial/...
- go test -v -cpu=2 ./platforms/bleclient/...
- go test -v -cpu=2 ./platforms/dji/...
- go test -v -cpu=2 ./platforms/firmata/...
- go test -v -cpu=2 ./platforms/joystick/...
- go test -v -cpu=2 ./platforms/parrot/...
- go test -v -cpu=2 ./platforms/serialport/...
- cd ..