File: appveyor.yml

package info (click to toggle)
golang-github-gofrs-flock 0.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, forky, sid, trixie
  • size: 128 kB
  • sloc: makefile: 2
file content (25 lines) | stat: -rw-r--r-- 517 bytes parent folder | download | duplicates (2)
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
version: '{build}'

build: false
deploy: false

clone_folder: 'c:\gopath\src\github.com\gofrs\flock'

environment:
  GOPATH: 'c:\gopath'
  GOVERSION: '1.15'

init:
  - git config --global core.autocrlf input

install:
  - 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;%Path%
  - go version
  - go env

test_script:
  - go get -t ./...
  - go test -race -v ./...