github.com/turingchain2020/turingchain@v1.1.21/appveyor.yml (about)

     1  version: "{build}"
     2  
     3  # Source Config
     4  
     5  clone_folder: c:\gopath\src\github.com\turingchain2020\turingchain
     6  
     7  # Build host
     8  
     9  environment:
    10    GOPATH: c:\gopath
    11    DEPTESTBYPASS501: 1
    12    GOVERSION: 1.13.8
    13    GO111MODULE: on
    14  
    15  #init:
    16  #  - git config --global core.autocrlf input
    17  # Build
    18  
    19  install:
    20    # Install the specific Go version.
    21    - rmdir c:\go /s /q
    22    - appveyor DownloadFile https://dl.google.com/go/go%GOVERSION%.windows-amd64.msi
    23    - msiexec /i go%GOVERSION%.windows-amd64.msi /q
    24   # - choco install bzr
    25    - set Path=c:\go\bin;c:\gopath\bin;C:\Program Files (x86)\Bazaar\;C:\Program Files\Mercurial\%Path%
    26    - go version
    27    - go env
    28  
    29  build: false
    30  deploy: false
    31  
    32  test_script:
    33    - build.bat
    34   # - for /f "" %%G in ('go list github.com/turingchain2020/turingchain/...') do ( go test %%G & IF ERRORLEVEL == 1 EXIT 1)