mirror of
https://github.com/minio/minio.git
synced 2025-05-21 17:43:48 -04:00
build: Fix appveyor.yml to report windows coverage as well. (#2666)
This commit is contained in:
parent
8acf4d112a
commit
07aa02f196
33
appveyor.yml
33
appveyor.yml
@ -9,7 +9,7 @@ platform: x64
|
|||||||
|
|
||||||
clone_folder: c:\gopath\src\github.com\minio\minio
|
clone_folder: c:\gopath\src\github.com\minio\minio
|
||||||
|
|
||||||
# environment variables
|
# Environment variables
|
||||||
environment:
|
environment:
|
||||||
GOPATH: c:\gopath
|
GOPATH: c:\gopath
|
||||||
GO15VENDOREXPERIMENT: 1
|
GO15VENDOREXPERIMENT: 1
|
||||||
@ -19,21 +19,36 @@ install:
|
|||||||
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
|
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
|
||||||
- go version
|
- go version
|
||||||
- go env
|
- go env
|
||||||
|
- python --version
|
||||||
|
|
||||||
# to run your custom scripts instead of automatic MSBuild
|
# To run your custom scripts instead of automatic MSBuild
|
||||||
build_script:
|
build_script:
|
||||||
- go test -race github.com/minio/minio/cmd...
|
# Compile
|
||||||
- go test -race github.com/minio/minio/pkg...
|
- appveyor AddCompilationMessage "Starting Compile"
|
||||||
- go test -coverprofile=coverage.txt -covermode=atomic
|
- cd c:\gopath\src\github.com\minio\minio
|
||||||
- go run buildscripts/gen-ldflags.go > temp.txt
|
- go run buildscripts/gen-ldflags.go > temp.txt
|
||||||
- set /p BUILD_LDFLAGS=<temp.txt
|
- set /p BUILD_LDFLAGS=<temp.txt
|
||||||
- go build -ldflags="%BUILD_LDFLAGS%" -o %GOPATH%\bin\minio.exe
|
- go build -ldflags="%BUILD_LDFLAGS%" -o %GOPATH%\bin\minio.exe
|
||||||
|
- appveyor AddCompilationMessage "Compile Success"
|
||||||
|
|
||||||
|
# To run your custom scripts instead of automatic tests
|
||||||
|
test_script:
|
||||||
|
# Unit tests
|
||||||
|
- ps: Add-AppveyorTest "Unit Tests" -Outcome Running
|
||||||
|
- mkdir build\coverage
|
||||||
|
- go test -race github.com/minio/minio/cmd...
|
||||||
|
- go test -race github.com/minio/minio/pkg...
|
||||||
|
- go test -coverprofile=build\coverage\coverage.txt -covermode=atomic github.com/minio/minio/cmd
|
||||||
|
- ps: Update-AppveyorTest "Unit Tests" -Outcome Passed
|
||||||
|
|
||||||
after_test:
|
after_test:
|
||||||
- bash <(curl -s https://codecov.io/bash)
|
- go tool cover -html=build\coverage\coverage.txt -o build\coverage\coverage.html
|
||||||
|
- ps: Push-AppveyorArtifact build\coverage\coverage.txt
|
||||||
# to disable automatic tests
|
- ps: Push-AppveyorArtifact build\coverage\coverage.html
|
||||||
test: off
|
# Upload coverage report.
|
||||||
|
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
|
||||||
|
- pip install codecov
|
||||||
|
- codecov -X gcov -f "build\coverage\coverage.txt"
|
||||||
|
|
||||||
# to disable deployment
|
# to disable deployment
|
||||||
deploy: off
|
deploy: off
|
||||||
|
Loading…
x
Reference in New Issue
Block a user