mirror of
https://github.com/octoleo/restic.git
synced 2024-10-31 19:02:32 +00:00
30 lines
653 B
YAML
30 lines
653 B
YAML
clone_folder: c:\restic
|
|
|
|
environment:
|
|
GOPATH: c:\gopath
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
init:
|
|
- ps: >-
|
|
$app = Get-WmiObject -Class Win32_Product -Filter "Vendor = 'http://golang.org'"
|
|
|
|
if ($app) {
|
|
$app.Uninstall()
|
|
}
|
|
|
|
install:
|
|
- rmdir c:\go /s /q
|
|
- appveyor DownloadFile https://dl.google.com/go/go1.10.windows-amd64.msi
|
|
- msiexec /i go1.10.windows-amd64.msi /q
|
|
- go version
|
|
- go env
|
|
- appveyor DownloadFile http://sourceforge.netcologne.de/project/gnuwin32/tar/1.13-1/tar-1.13-1-bin.zip -FileName tar.zip
|
|
- 7z x tar.zip bin/tar.exe
|
|
- set PATH=bin/;%PATH%
|
|
|
|
build_script:
|
|
- go run run_integration_tests.go
|