Remove build ci
This commit is contained in:
parent
008fafef6f
commit
294fb85716
29
appveyor.yml
29
appveyor.yml
@ -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/
|
||||
15
build.cmd
15
build.cmd
@ -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
|
||||
Loading…
Reference in New Issue
Block a user