We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b277af commit eb17597Copy full SHA for eb17597
2 files changed
appveyor.yml
@@ -0,0 +1,15 @@
1
+clone_folder: c:\gopath\src\github.com\deis\controller-sdk-go
2
+
3
+environment:
4
+ GOPATH: C:\gopath
5
6
+install:
7
+ - ps: (new-object net.webclient).DownloadFile('https://github.com/Masterminds/glide/releases/download/0.10.2/glide-0.10.2-windows-amd64.zip', 'C:\glide.zip')
8
+ - ps: 7z e C:\glide.zip -oC:\glide
9
+ - ps: $env:Path += ";C:\glide\"
10
+ - ps: .\make bootstrap
11
+build: off
12
+test_script:
13
+ - ps: .\make test
14
+cache:
15
+ - vendor
make.ps1
@@ -0,0 +1,10 @@
+if ($args[0] -eq "test") {
+ go test --cover --race -v $(glide novendor)
+} elseif ($args[0] -eq "bootstrap") {
+ glide install
+} else {
+ echo "Unknown command: '$args'"
+ exit 1
+}
+exit $LASTEXITCODE
0 commit comments