Remove build ci

This commit is contained in:
Oleksandr Melnyk 2022-06-12 13:19:19 +03:00
parent 008fafef6f
commit 294fb85716
2 changed files with 0 additions and 44 deletions

View File

@ -1,29 +0,0 @@
version: xxHash-{branch}-{build}
test: off
before_build:
- choco install opencover.portable
- choco install codecov
image: Visual Studio 2022
install:
- ps: $env:DOTNET_BUILD_VERSION = $env:APPVEYOR_BUILD_NUMBER
build_script:
- cmd: build.cmd
artifacts:
- path: artifacts\*.nupkg
test_script:
- OpenCover.Console.exe -register:user -target:"dotnet.exe" -targetargs:"test src/Standart.Hash.xxHash.Test" -output:coverage.xml -oldstyle -filter:"+[Standart*]* -[*.Test]*"
- codecov -f "coverage.xml"
deploy:
provider: NuGet
api_key:
secure: +1hDCHt3w+fajHIw+ChIh5EP2RVdn8Gn6wgqe5jO/ZhWDE0KN2dTaS+EEOIJ67hn
skip_symbols: true
artifact: /.*\.nupkg/

View File

@ -1,15 +0,0 @@
@echo off
pushd %~dp0
md artifacts
call dotnet --info
call dotnet restore src
if %errorlevel% neq 0 exit /b %errorlevel%
call dotnet test src/Standart.Hash.xxHash.Test
if %errorlevel% neq 0 exit /b %errorlevel%
echo Packing Standart.Hash.xxHash
call dotnet pack src/Standart.Hash.xxHash -c Release -o .\artifacts
popd