From 3c35f69bcbeca172722dad56386a26b92c22f72d Mon Sep 17 00:00:00 2001 From: AdmiringWorm Date: Wed, 22 Jul 2020 12:44:49 +0200 Subject: [PATCH] ci(appveyor): remove ability to run unit tests on appveyor --- .appveyor.yml | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml deleted file mode 100644 index d00995c1..00000000 --- a/.appveyor.yml +++ /dev/null @@ -1,50 +0,0 @@ -version: "{build}" -pull_requests: - do_not_increment_build_number: true -skip_branch_with_pr: true - -branches: - # Blacklist - except: - - /dependabot\/.*/ - - ci/travis - -image: - - macOS - - Ubuntu -# - Visual Studio 2015 - -matrix: - fast_finish: true - -environment: - APPVEYOR_YML_DISABLE_PS_LINUX: true - matrix: - - nodejs_version: "10" - -stack: node %nodejs_version% - -install: - - ps: Install-Product node $env:nodejs_version - - sh: if [ "$CI_LINUX" != 'true' ]; then brew install yarn; export PATH="$PATH:/Users/appveyor/.dotnet/tools" ; fi - - sh: export FrameworkPathOverride=$(dirname $(which mono))/../lib/mono/4.5/ - - dotnet tool install --global codecov.tool - -build_script: - - pwsh: ./build.ps1 --build - -test_script: - - pwsh: ./build.ps1 --test - -on_finish: - - codecov --env 'nodejs_version APPVEYOR_BUILD_WORKER_IMAGE' --file coverage/clover.xml coverage/coverage-final.json coverage/lcov.info --required - - pwsh: | - $wc = New-Object 'System.Net.WebClient' - $wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\junit.xml)) - -cache: - - "node_modules -> package.json,yarn.lock" - -artifacts: - - path: "*.tgz" - name: npm package