summaryrefslogtreecommitdiff
path: root/vendor/github.com/keybase/go-ps/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/keybase/go-ps/appveyor.yml')
-rw-r--r--vendor/github.com/keybase/go-ps/appveyor.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/vendor/github.com/keybase/go-ps/appveyor.yml b/vendor/github.com/keybase/go-ps/appveyor.yml
new file mode 100644
index 0000000..59a98ac
--- /dev/null
+++ b/vendor/github.com/keybase/go-ps/appveyor.yml
@@ -0,0 +1,31 @@
+# environment variables
+environment:
+ global:
+ GOPATH: c:\work\
+
+# clone path
+clone_folder: c:\work\src\github.com\keybase\go-ps
+
+# build platform, i.e. x86, x64, Any CPU. This setting is optional.
+#platform: Any CPU
+
+# scripts to run before build
+before_build:
+
+# scripts to run after build
+after_build:
+
+# to run your custom scripts instead of automatic MSBuild
+build_script:
+ - go version
+ - go build
+ - go get github.com/stretchr/testify/assert
+ - go get github.com/stretchr/testify/require
+ - go test -short -v
+ - go test -short -race -v
+
+# to disable automatic tests
+test: off
+
+# to disable deployment
+deploy: off