From 9dbb025fb6be07bc38734f07a40b6c3e39fec2db Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Tue, 19 Oct 2021 20:30:49 +0300 Subject: AppVeyor CI: Rename configuration file to .appveyor.yml --- .appveyor.yml | 24 ++++++++++++++++++++++++ appveyor.yml | 24 ------------------------ 2 files changed, 24 insertions(+), 24 deletions(-) create mode 100644 .appveyor.yml delete mode 100644 appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..ae3293d --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,24 @@ +version: 7.2.x-{build} + +clone_depth: 50 + +environment: + MS_SDK_VER: v7.1 + matrix: + - CPU: x86 + BLD: debug + - CPU: x86 + BLD: release + - CPU: x64 + BLD: debug + - CPU: x64 + BLD: release + +install: + - cmd: '"C:\Program Files\Microsoft SDKs\Windows\%MS_SDK_VER%\Bin\SetEnv.cmd" /%CPU% /%BLD%' + +build_script: + - cmd: cd src && nmake -f Makefile.msft clean all && cd .. + +test_script: + - cmd: cd src && nmake -f Makefile.msft check diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index ae3293d..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,24 +0,0 @@ -version: 7.2.x-{build} - -clone_depth: 50 - -environment: - MS_SDK_VER: v7.1 - matrix: - - CPU: x86 - BLD: debug - - CPU: x86 - BLD: release - - CPU: x64 - BLD: debug - - CPU: x64 - BLD: release - -install: - - cmd: '"C:\Program Files\Microsoft SDKs\Windows\%MS_SDK_VER%\Bin\SetEnv.cmd" /%CPU% /%BLD%' - -build_script: - - cmd: cd src && nmake -f Makefile.msft clean all && cd .. - -test_script: - - cmd: cd src && nmake -f Makefile.msft check -- cgit v1.2.1