github.com/mckael/restic@v0.8.3/appveyor.yml (about)

     1  clone_folder: c:\restic
     2  
     3  environment:
     4    GOPATH: c:\gopath
     5  
     6  branches:
     7    only:
     8      - master
     9  
    10  init:
    11    - ps: >-
    12        $app = Get-WmiObject -Class Win32_Product -Filter "Vendor = 'http://golang.org'"
    13  
    14        if ($app) {
    15          $app.Uninstall()
    16        }
    17  
    18  install:
    19    - rmdir c:\go /s /q
    20    - appveyor DownloadFile https://dl.google.com/go/go1.10.windows-amd64.msi
    21    - msiexec /i go1.10.windows-amd64.msi /q
    22    - go version
    23    - go env
    24    - appveyor DownloadFile http://sourceforge.netcologne.de/project/gnuwin32/tar/1.13-1/tar-1.13-1-bin.zip -FileName tar.zip
    25    - 7z x tar.zip bin/tar.exe
    26    - set PATH=bin/;%PATH%
    27  
    28  build_script:
    29    - go run run_integration_tests.go