git-lfs/appveyor.yml
Sebastian Schuberth b43930c312 Make the target OS explicitly default to the host OS
This triggers the check for building on Windows to make binaries get the
".exe" extension.
2016-09-28 21:30:05 +02:00

18 lines
446 B
YAML

install:
- cinst InnoSetup -y
- set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH%
build_script:
- bash -c 'GOARCH=386 script/bootstrap'
- mv bin\git-lfs.exe git-lfs-x86.exe
- bash -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
artifacts:
- path: git-lfs-x86.exe
- path: git-lfs-x64.exe
- path: git-lfs-windows-*.exe