magnetico/appveyor.yml

33 lines
939 B
YAML
Raw Normal View History

2017-11-08 19:56:12 +01:00
version: "{branch}-{build}"
platform: x64
# Source Config
clone_folder: c:\gopath\src\magnetico
shallow_clone: true
2017-11-08 19:56:12 +01:00
# Build host
environment:
GOPATH: c:\gopath
2020-12-23 07:59:01 +01:00
GOVERSION: 1.15.6
2017-11-08 19:56:12 +01:00
install:
# Install the specific Go version.
- rmdir c:\go /s /q
- appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.msi
- msiexec /i go%GOVERSION%.windows-amd64.msi /q
- set Path=c:\go\bin;c:\gopath\bin
- go version
- go env
- go get -u -v github.com/kevinburke/go-bindata/...
2017-11-08 19:56:12 +01:00
build_script:
2020-12-23 08:18:27 +01:00
# Build magneticod
- go install --tags fts5 "-ldflags=-s -w -X main.compiledOn=`date -u +%Y-%m-%dT%H:%M:%SZ`" ./cmd/magneticod
# Build magneticow
- go-bindata -pkg "main" -o="cmd/magneticow/bindata.go" -prefix="cmd/magneticow/data/" cmd/magneticow/data/...
- go install --tags fts5 "-ldflags=-s -w -X main.compiledOn=`date -u +%Y-%m-%dT%H:%M:%SZ`" ./cmd/magneticow
test_script:
2020-12-23 08:18:27 +01:00
- go test ./...