Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to go1.5beta2 #14

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions appveyor.yml
Expand Up @@ -5,8 +5,8 @@ os: Windows Server 2012 R2
clone_folder: c:\gopath\src\github.com\wellington\go-libsass

environment:
GOVER: go1.5beta1
GOPATH: c:\gopath
WIN_VER: windows-na
CGO_ENABLED: 1
GOROOT_BOOTSTRAP: C:\go
GOROOT: C:\go15\go
Expand Down Expand Up @@ -37,11 +37,11 @@ install:
- dir C:\mingw64\bin
#retrieve go 1.5
- ps: |
$file = "go1.5beta1.windows-amd64.zip"
$file = "%GOVER%.windows-amd64.zip"
$url = "https://storage.googleapis.com/golang/"
$url += $file
Invoke-WebRequest -UserAgent wget -Uri $url -OutFile go1.5beta1.windows-amd64.zip
&7z x -oC:\go15 go1.5beta1.windows-amd64.zip > $null
Invoke-WebRequest -UserAgent wget -Uri $url -OutFile go1.5beta2.windows-amd64.zip
&7z x -oC:\go15 go1.5beta2.windows-amd64.zip > $null
- go version
- go get ./...

Expand Down