From 0431bcf3acdae2c6f01db3dd5873bb17435d0e4a Mon Sep 17 00:00:00 2001 From: nhmall Date: Thu, 27 Jan 2022 22:54:03 -0500 Subject: [PATCH] update CI build for mingw --- azure-pipelines.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 01b39e88d..160778523 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -138,8 +138,10 @@ steps: export PDCURSES_TOP=../submodules/pdcurses export LUA_VERSION=5.4.4 export TRAVIS_COMPILER=1 - cp ../sys/windows/Makefile.gcc ./Makefile - mingw32-make LUA_VERSION=$LUA_VERSION install + cp ../sys/windows/Makefile.mingw32* . + mingw32-make -f Makefile.mingw32 clean + mingw32-make -f Makefile.mingw32 depend + mingw32-make -f Makefile.mingw32 condition: eq( variables.toolchain, 'mingw' ) workingDirectory: $(Agent.BuildDirectory)/$(netHackPath)/src displayName: 'MinGW Build'