2016-07-04 17:46:38 -04:00
|
|
|
# version format
|
|
|
|
version: "{build}"
|
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
# Operating system (build VM template)
|
2016-07-04 17:46:38 -04:00
|
|
|
os: Windows Server 2012 R2
|
2016-02-10 19:40:09 -05:00
|
|
|
|
2016-07-04 17:46:38 -04:00
|
|
|
# Platform.
|
2016-02-10 19:40:09 -05:00
|
|
|
platform: x64
|
2015-10-16 14:26:01 -04:00
|
|
|
|
|
|
|
clone_folder: c:\gopath\src\github.com\minio\minio
|
|
|
|
|
2016-09-11 00:05:00 -04:00
|
|
|
# Environment variables
|
2015-10-16 14:26:01 -04:00
|
|
|
environment:
|
|
|
|
GOPATH: c:\gopath
|
2018-04-06 14:07:39 -04:00
|
|
|
GOROOT: c:\go
|
2015-10-16 14:26:01 -04:00
|
|
|
|
|
|
|
# scripts that run after cloning repository
|
|
|
|
install:
|
2017-09-12 19:56:33 -04:00
|
|
|
- set PATH=%GOPATH%\bin;%GOROOT%\bin;%PATH%
|
2015-10-16 14:26:01 -04:00
|
|
|
- go version
|
|
|
|
- go env
|
2016-09-11 00:05:00 -04:00
|
|
|
- python --version
|
2015-10-16 14:26:01 -04:00
|
|
|
|
2016-09-11 00:05:00 -04:00
|
|
|
# To run your custom scripts instead of automatic MSBuild
|
2015-10-16 14:26:01 -04:00
|
|
|
build_script:
|
2016-09-11 00:05:00 -04:00
|
|
|
# Compile
|
2017-06-22 10:54:22 -04:00
|
|
|
# We need to disable firewall - https://github.com/appveyor/ci/issues/1579#issuecomment-309830648
|
|
|
|
- ps: Disable-NetFirewallRule -DisplayName 'File and Printer Sharing (SMB-Out)'
|
2016-09-11 00:05:00 -04:00
|
|
|
- appveyor AddCompilationMessage "Starting Compile"
|
|
|
|
- cd c:\gopath\src\github.com\minio\minio
|
2015-11-08 05:56:19 -05:00
|
|
|
- go run buildscripts/gen-ldflags.go > temp.txt
|
|
|
|
- set /p BUILD_LDFLAGS=<temp.txt
|
|
|
|
- go build -ldflags="%BUILD_LDFLAGS%" -o %GOPATH%\bin\minio.exe
|
2016-09-11 00:05:00 -04:00
|
|
|
- appveyor AddCompilationMessage "Compile Success"
|
2015-10-16 14:26:01 -04:00
|
|
|
|
2016-09-11 00:05:00 -04:00
|
|
|
# To run your custom scripts instead of automatic tests
|
|
|
|
test_script:
|
|
|
|
# Unit tests
|
|
|
|
- ps: Add-AppveyorTest "Unit Tests" -Outcome Running
|
|
|
|
- mkdir build\coverage
|
2017-12-05 20:58:09 -05:00
|
|
|
- for /f "" %%G in ('go list github.com/minio/minio/... ^| find /i /v "browser/"') do ( go test -v -timeout 20m -race %%G )
|
|
|
|
- go test -v -timeout 20m -coverprofile=build\coverage\coverage.txt -covermode=atomic github.com/minio/minio/cmd
|
2016-09-11 00:05:00 -04:00
|
|
|
- ps: Update-AppveyorTest "Unit Tests" -Outcome Passed
|
2016-08-04 19:48:50 -04:00
|
|
|
|
2016-09-11 00:05:00 -04:00
|
|
|
after_test:
|
2017-12-05 20:58:09 -05:00
|
|
|
- go tool cover -html=build\coverage\coverage.txt -o build\coverage\coverage.html
|
|
|
|
- ps: Push-AppveyorArtifact build\coverage\coverage.txt
|
|
|
|
- ps: Push-AppveyorArtifact build\coverage\coverage.html
|
2016-09-11 00:05:00 -04:00
|
|
|
# Upload coverage report.
|
2017-12-05 20:58:09 -05:00
|
|
|
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
|
|
|
|
- pip install codecov
|
|
|
|
- codecov -X gcov -f "build\coverage\coverage.txt"
|
2015-10-16 14:26:01 -04:00
|
|
|
|
|
|
|
# to disable deployment
|
|
|
|
deploy: off
|