File: appveyor.yml

package info (click to toggle)
golang-github-syncthing-notify 0.0~git20210616.c6b7342-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 448 kB
  • sloc: makefile: 3
file content (27 lines) | stat: -rw-r--r-- 534 bytes parent folder | download | duplicates (5)
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
version: "{build}"

os: Windows Server 2012 R2

clone_folder: c:\projects\src\github.com\rjeczalik\notify

environment:
 PATH: c:\projects\bin;%PATH%
 GOPATH: c:\projects
 NOTIFY_TIMEOUT: 10s
 GOVERSION: 1.10.3

install:
 - rmdir c:\go /s /q
 - appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.zip
 - 7z x go%GOVERSION%.windows-amd64.zip -y -oC:\ > NUL

 - cd %APPVEYOR_BUILD_FOLDER%
 - go version

build_script:
 - go build ./...
 - go test -v -timeout 120s -race ./...

test: off

deploy: off