more CI build fixes

This commit is contained in:
nhmall
2024-03-07 11:44:35 -05:00
parent 68da7fe08d
commit aacfbecf5c
3 changed files with 5 additions and 5 deletions

View File

@@ -207,7 +207,6 @@ steps:
sed -i '/^#[ ]*define LOGFILE/d' include/config.h
sed -i '/^#[ ]*define NEWS/d' include/config.h
sed -i '/^#[ ]*define PANICLOG/d' include/config.h
sed -i '/^#[ ]*define PANICTRACE/d' include/config.h
#sed -i '/^#[ ]*define STATUS_HILITES/d' include/config.h
sed -i '/^#[ ]*define SYSCF/d' include/config.h
sed -i '/^#[ ]*define USER_SOUNDS/d' include/config.h
@@ -217,7 +216,7 @@ steps:
sed -i '/^#[ ]*define SHELL/d' include/unixconf.h
sed -i '/^#[ ]*define SUSPEND/d' include/unixconf.h
make fetch-lua
make WANT_WIN_ALL=1 all
make WANT_WIN_ALL=1 NOCRASHREPORT=1 all
condition: and(eq( variables['Agent.OS'], 'Linux' ), eq( variables.buildTarget, 'minimal'))
displayName: 'Building linux minimal build'
workingDirectory: $(Agent.BuildDirectory)/$(netHackPath)

View File

@@ -5,9 +5,6 @@
#include "hack.h"
/* NB: CRASHREPORT implies PANICTRACE */
#ifndef PANICTRACE
#undef CRASHREPORT
#endif
#ifdef CRASHREPORT

View File

@@ -194,6 +194,10 @@ CPLUSPLUS_NEEDED = 1
endif
endif
ifeq "$(NOCRASHREPORT)" "1"
WINCFLAGS += -DNOCRASHREPORT
endif
#end of hints/include/multiw-2.370
#------------------------------------------------------------------------------