From 47a047bd16c072d883a86a8dfc6ab22de9a4be5b Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Thu, 12 Mar 2020 14:47:40 +0330 Subject: [PATCH] [ci] Remove the not used azure-pipelines.yml We will use GitHub Actions instead, same infrastructure anyway, or even better, CircleCI's Windows support --- azure-pipelines.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 88c0a984a..000000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,21 +0,0 @@ -pool: - vmImage: 'VS2017-Win2016' - -variables: - buildPlatform: 'x86' - buildConfiguration: 'Debug' - triplet: 'x86-windows' - -steps: -- script: | - git clone https://github.com/Microsoft/vcpkg - cd vcpkg - .\bootstrap-vcpkg.bat - .\vcpkg integrate install - .\vcpkg install glib:x86-windows freetype:x86-windows cairo:x86-windows - cd .. - cmake -Bbuild -H. -DHB_HAVE_UNISCRIBE=ON -DHB_HAVE_DIRECTWRITE=ON -DHB_HAVE_GLIB=ON -DHB_HAVE_FREETYPE=ON -DHB_BUILD_UTILS=ON -G "%generator%" -DCMAKE_TOOLCHAIN_FILE=vcpkg/scripts/buildsystems/vcpkg.cmake ../ - msbuild harfbuzz.sln /p:Configuration=Debug /p:Platform=Win32 - cd build - ctest --output-on-failure -C Debug - displayName: Build and test