# version format version: "{build}" # Operating system (build VM template) os: Windows Server 2012 R2 # Platform. platform: x64 clone_folder: c:\gopath\src\github.com\minio\minio # Environment variables environment: GOPATH: c:\gopath GOROOT: c:\go # scripts that run after cloning repository install: - set PATH=%GOPATH%\bin;%GOROOT%\bin;%PATH% - go version - go env - python --version # To run your custom scripts instead of automatic MSBuild build_script: # Compile # We need to disable firewall - https://github.com/appveyor/ci/issues/1579#issuecomment-309830648 - ps: Disable-NetFirewallRule -DisplayName 'File and Printer Sharing (SMB-Out)' - appveyor AddCompilationMessage "Starting Compile" - cd c:\gopath\src\github.com\minio\minio - go run buildscripts/gen-ldflags.go > temp.txt - set /p BUILD_LDFLAGS=