git-lfs/appveyor.yml
Taylor Blau 3f3faa900b
Merge pull request #3144 from git-lfs/ttaylorr/makefile
Makefile: replace many scripts with make targets
2018-07-25 20:23:13 -05:00

52 lines
1.5 KiB
YAML

image: Visual Studio 2017
skip_branch_with_pr: true
environment:
GIT_LFS_NO_TEST_COUNT: 1
GIT_LFS_LOCK_ACQUIRE_DISABLED: 1
GOPATH: C:\Users\appveyor\go
MSYSTEM: MINGW64
clone_folder: $(GOPATH)\src\github.com\git-lfs\git-lfs
install:
- rd C:\Go /s /q
- rd C:\Perl /s /q
- refreshenv
- curl -sL -o go1.10.3.windows-amd64.zip https://storage.googleapis.com/golang/go1.10.3.windows-amd64.zip
- 7z x go1.10.3.windows-amd64.zip -oC:\ >nul
- C:\go\bin\go version
- cinst InnoSetup -y
- cinst strawberryperl -y
- refreshenv
- cinst make
- refreshenv
- set PATH=%GOPATH%\bin\windows_386;%PATH%
- ps: |
echo "Go directories in machine PATH environment:"
[environment]::GetEnvironmentVariable("PATH","Machine").split(";") | Select-String -Pattern "\\go\\"
echo "Go directories in user PATH environment:"
[environment]::GetEnvironmentVariable("PATH","User").split(";") | Select-String -Pattern "\\go\\"
echo "Go directories in process PATH environment:"
[environment]::GetEnvironmentVariable("PATH","Process").split(";") | Select-String -Pattern "\\go\\"
echo "Go version information:"
go version
build_script:
- bash --login -c 'make GOARCH=386 -B'
- mv bin\git-lfs.exe git-lfs-x86.exe
- bash --login -c 'make GOARCH=amd64 -B'
- 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