From 1b3c8b0012d2e778661af7eceb429d3b47d8a721 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 24 Aug 2025 20:48:43 +0200 Subject: [PATCH] Remove AppVeyor integration It is tied to the old repository location. If someone knows how to update that, of course it could be revived. (Alternatively, GitHub Actions also allows testing on Windows...) --- README.md | 3 --- appveyor.yml | 34 ---------------------------------- 2 files changed, 37 deletions(-) delete mode 100644 appveyor.yml diff --git a/README.md b/README.md index 4347b86..ea92402 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ [![License][license-img]](LICENSE) [![CI][ci-img]][ci-url] -[![appveyor][appveyor-img]][appveyor-url] [![codecov][codecov-img]][codecov-url] [![dev][docs-dev-img]][docs-dev-url] [![stable][docs-stable-img]][docs-stable-url] @@ -11,8 +10,6 @@ [license-img]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square [ci-img]: https://github.com/JuliaDatabases/Mongoc.jl/workflows/CI/badge.svg [ci-url]: https://github.com/JuliaDatabases/Mongoc.jl/actions?query=workflow%3ACI -[appveyor-img]: https://img.shields.io/appveyor/ci/felipenoris/mongoc-jl/master.svg?logo=appveyor&label=Windows&style=flat-square -[appveyor-url]: https://ci.appveyor.com/project/felipenoris/mongoc-jl/branch/master [codecov-img]: https://img.shields.io/codecov/c/github/JuliaDatabases/Mongoc.jl/master.svg?label=codecov&style=flat-square [codecov-url]: https://codecov.io/github/JuliaDatabases/Mongoc.jl?branch=master [docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg?style=flat-square diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 7fb3f14..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,34 +0,0 @@ - -services: - - mongodb - -environment: - matrix: - - julia_version: 1.6 - - julia_version: 1.7 - - julia_version: 1.8 - - julia_version: latest - -matrix: - allow_failures: - - julia_version: latest - -platform: - - x64 # 64-bit - -notifications: - - provider: Email - on_build_success: false - on_build_failure: false - on_build_status_changed: false - -install: - - ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1")) - -build_script: - - echo "%JL_BUILD_SCRIPT%" - - C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%" - -test_script: - - echo "%JL_TEST_SCRIPT%" - - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"