2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-09 20:32:23 +00:00

Install current version of Go

This is inspired by the appveyor.yaml from the go-plus project:
https://github.com/joefitzgerald/go-plus/blob/master/appveyor.yml
This commit is contained in:
Alexander Neumann 2015-09-27 18:00:53 +02:00
parent 70a6233b94
commit 7291342723

View File

@ -3,7 +3,17 @@ clone_folder: c:\gopath\src\github.com\restic\restic
environment: environment:
GOPATH: c:\gopath;c:\gopath\src\github.com\restic\restic\Godeps\_workspace GOPATH: c:\gopath;c:\gopath\src\github.com\restic\restic\Godeps\_workspace
init:
- ps: >-
$app = Get-WmiObject -Class Win32_Product -Filter "Vendor = 'http://golang.org'"
if ($app) {
$app.Uninstall()
}
install: install:
- appveyor DownloadFile https://storage.googleapis.com/golang/go1.5.1.windows-amd64.msi
- msiexec /i go1.5.1.windows-amd64.msi /q
- go version - go version
- go env - go env
- appveyor DownloadFile http://downloads.sourceforge.net/project/gnuwin32/tar/1.13-1/tar-1.13-1-bin.zip -FileName tar.zip - appveyor DownloadFile http://downloads.sourceforge.net/project/gnuwin32/tar/1.13-1/tar-1.13-1-bin.zip -FileName tar.zip