25 lines
383 B
YAML
25 lines
383 B
YAML
version: "{build}"
|
|
platform: "mingw"
|
|
|
|
# Source Config
|
|
|
|
clone_folder: C:\gopath\src\crawshaw.io\sqlite
|
|
|
|
# Build host
|
|
|
|
environment:
|
|
GOPATH: C:\gopath
|
|
|
|
# Build
|
|
|
|
install:
|
|
- set PATH=C:\go\bin;C:\gopath\bin;C:\mingw-w64\x86_64-7.3.0-posix-seh-rt_v5-rev0\mingw64\bin;%PATH%
|
|
- go version
|
|
- go env
|
|
|
|
build: false
|
|
deploy: false
|
|
|
|
test_script:
|
|
- go get -v -t ./...
|
|
- go test -v ./... |