From 1187fa832998dd5fea9ea2a78bf6863a31c508f9 Mon Sep 17 00:00:00 2001 From: Rob Davies Date: Mon, 8 Jul 2024 16:18:35 +0100 Subject: [PATCH] Remove AppVeyor configuration Completes the migration of Windows testing to GitHub actions. GitHub actions tests were added in commit 624e95b8 (PR #1796). --- .appveyor.yml | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml deleted file mode 100644 index 8fe288094..000000000 --- a/.appveyor.yml +++ /dev/null @@ -1,43 +0,0 @@ -# version format. -# you can use {branch} name in version format too -# version: 1.0.{build}-{branch} -version: 'vers.{build}' - -# branches to build -branches: - # Blacklist - except: - - gh-pages - -# Do not build on tags (GitHub and BitBucket) -skip_tags: true - -# Skipping commits affecting specific files (GitHub only). More details here: /docs/appveyor-yml -#skip_commits: -# files: -# - docs/* -# - '**/*.html' - -# Appveyor Windows images are based on Visual studio version -image: Visual Studio 2019 - -# We use Mingw/Msys, so use pacman for installs -install: - - set HOME=. - - set MSYSTEM=MINGW64 - - set PATH=C:/msys64/usr/bin;C:/msys64/mingw64/bin;%PATH% - - set MINGWPREFIX=x86_64-w64-mingw32 - - "sh -lc \"pacman -S --noconfirm --needed base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-autotools mingw-w64-x86_64-zlib mingw-w64-x86_64-bzip2 mingw-w64-x86_64-xz mingw-w64-x86_64-curl mingw-w64-x86_64-tools-git\"" - -build_script: - - set HOME=. - - set MSYSTEM=MINGW64 - - set PATH=C:/msys64/usr/bin;C:/msys64/mingw64/bin;%PATH% - - git submodule update --init --recursive - - "sh -lc \"autoreconf -i && ./configure --enable-werror CFLAGS='-g -O3' && make -j2\"" - -#build_script: -# - make - -test_script: - - "sh -lc \"make test-shlib-exports && make test\""