git-lfs/appveyor.yml
Taylor Blau bac0312478 Revert "AppVeyor: Override PATH with our Chocolatey Go version"
This reverts commit 32caab0f280fd4c438891c0814ab98c43b679908.
2017-02-22 13:55:37 -07:00

31 lines
673 B
YAML

skip_branch_with_pr: true
environment:
GOPATH: $(HOMEDRIVE)$(HOMEPATH)\go
MSYSTEM: MINGW64
clone_folder: $(GOPATH)\src\github.com\git-lfs\git-lfs
install:
- rd C:\Go /s /q
- cinst golang --version 1.8.0 -y
- cinst InnoSetup -y
- refreshenv
build_script:
- bash --login -c 'GOARCH=386 script/bootstrap'
- mv bin\git-lfs.exe git-lfs-x86.exe
- bash --login -c 'GOARCH=amd64 script/bootstrap'
- mv bin\git-lfs.exe git-lfs-x64.exe
after_build:
- iscc script\windows-installer\inno-setup-git-lfs-installer.iss
test_script:
- bash --login script/cibuild
artifacts:
- path: git-lfs-x86.exe
- path: git-lfs-x64.exe
- path: git-lfs-windows-*.exe