From 3675063b739e73dfba584a736b69ff86b15781da Mon Sep 17 00:00:00 2001 From: Martijn Bodeman <11424653+skwasjer@users.noreply.github.com> Date: Thu, 21 Dec 2023 06:07:49 +0100 Subject: [PATCH] ci: remove AppVeyor CI (#189) --- appveyor.yml | 42 ------------------------------------------ codecov.yml | 28 ---------------------------- 2 files changed, 70 deletions(-) delete mode 100644 appveyor.yml delete mode 100644 codecov.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 88507e47..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,42 +0,0 @@ -image: Visual Studio 2022 -skip_branch_with_pr: true -configuration: Release -environment: - IGNORE_NORMALISATION_GIT_HEAD_MOVE: 1 -install: - - choco install gitversion.portable -y - - gitversion /l console /output buildserver - - choco install opencover.portable -y - - choco install codecov -y -cache: - - C:\ProgramData\chocolatey\bin -> appveyor.yml, codecov.yml - - C:\ProgramData\chocolatey\lib -> appveyor.yml, codecov.yml -dotnet_csproj: - patch: true - file: '**\*.csproj;**\*.props' - version: '{GitVersion_SemVer}' - package_version: $(GitVersion_NuGetVersion) - assembly_version: $(GitVersion_AssemblySemVer) - file_version: $(GitVersion_AssemblySemFileVer) - informational_version: $(GitVersion_InformationalVersion) -nuget: - project_feed: true -# disable_publish_on_pr: true -before_build: - - dotnet nuget locals global-packages --clear # AppVeyor's default NuGet global cache has invalid package references... :| - - dotnet restore -build: - project: IbanNet.sln - publish_nuget: true - publish_nuget_symbols: true - use_snupkg_format: true - verbosity: minimal -test_script: - - OpenCover.Console.exe -target:"dotnet.exe" -targetargs:"test -c Release /p:DebugType=full -l:trx;LogFilePrefix=testresults" -output:coverage.xml -register:user -returntargetcode -filter:"+[IbanNet*]* -[*Tests]*" -excludebyattribute:*.ExcludeFromCodeCoverageAttribute;*.GeneratedCodeAttribute;*.DebuggerNonUserCodeAttribute;*.CompilerGeneratedAttribute;*.DebuggerHiddenAttribute -oldStyle - - codecov -f coverage.xml -deploy: -- provider: NuGet - api_key: - secure: LYK2kBW5UKfW19u4OR0m91tWA4/+kvmPQKm721Gp/VPjKU6F0pO4E8XrhId71pVp - on: - APPVEYOR_REPO_TAG: true diff --git a/codecov.yml b/codecov.yml deleted file mode 100644 index f2a2be91..00000000 --- a/codecov.yml +++ /dev/null @@ -1,28 +0,0 @@ -codecov: - branch: main - require_ci_to_pass: false - notify: - wait_for_ci: false -comment: - behavior: default - layout: header,tree - require_changes: false -coverage: - precision: 2 - round: down - range: "70...100" - status: - changes: false - patch: false - project: - default: - threshold: 1% -parsers: - gcov: - branch_detection: - conditional: true - loop: true - macro: false - method: false - javascript: - enable_partials: false