summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-12-15 17:57:11 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-12-15 17:57:11 (GMT)
commitaf61385274c1096e12c1c765c731de691bf271f2 (patch)
tree5b540d7b4e765da6cf981701b035fa056459ed79
parentb09bb36e451b25916f80af2d316775963df8357d (diff)
downloadDoxygen-af61385274c1096e12c1c765c731de691bf271f2.zip
Doxygen-af61385274c1096e12c1c765c731de691bf271f2.tar.gz
Doxygen-af61385274c1096e12c1c765c731de691bf271f2.tar.bz2
Remove Appveyor CI builds in favor of Github Actions
-rw-r--r--appveyor.yml60
1 files changed, 0 insertions, 60 deletions
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index 7969be0..0000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,60 +0,0 @@
-image: Visual Studio 2017
-
-configuration:
- - Release
- - Debug
-
-platform:
- - x64
- - Win32
-
-environment:
- # VS VERSION IN CMAKE STYLE
- matrix:
- - VSVERSION: "15 2017"
- - VSVERSION: "14 2015"
-
-cache:
- - C:\Users\Appveyor\.conan -> appveyor.yml
- - c:\.conan -> appveyor.yml
- - '%LOCALAPPDATA%\pip\Cache -> appveyor.yml'
- - C:\miktex-repository -> appveyor.yml
-
-
-init:
- - cmake --version
- - perl --version
- - msbuild /version
-
-install:
- # Static url: https://github.com/MiKTeX/miktex/issues/321#issuecomment-496286866
- # The setup is small enough, and does not need to be cached
- - appveyor-retry appveyor DownloadFile https://miktex.org/download/win/miktexsetup-x64.zip
- - 7z e miktexsetup-x64.zip
- - appveyor-retry miktexsetup.exe --local-package-repository=C:\miktex-repository --package-set=essential download
- - miktexsetup.exe --local-package-repository=C:\miktex-repository --package-set=essential --shared install
- - refreshenv
- - pip install conan
- - ps: |
- "[requires]
- libxml2/2.9.8@bincrafters/stable
- winflexbison/2.5.16@bincrafters/stable" | Out-File -Encoding ASCII -FilePath conanfile.txt
- - conan install . -g virtualrunenv --build missing
- - activate_run.bat
-
-before_build:
- - if "%platform%"=="Win32" ( set "CMAKE_GENERATOR_NAME=Visual Studio %VSVERSION%" )
- - if "%platform%"=="x64" ( set "CMAKE_GENERATOR_NAME=Visual Studio %VSVERSION% Win64")
- - mkdir build
- - cd build
- - cmake -G "%CMAKE_GENERATOR_NAME%" ..
-
-build:
- project: "build\\PACKAGE.vcxproj"
- parallel: false
-
-test_script:
- - msbuild "testing\tests.vcxproj" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
-# Disabled building document due to unreliable MikTeX installation
-# - cmake -G "%CMAKE_GENERATOR_NAME%" -D build_doc=ON ..
-# - msbuild "doc\docs.vcxproj" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"