From 2aa7ee70fee379b77fd9067e2cd67681b08de28b Mon Sep 17 00:00:00 2001 From: mazmazz Date: Sat, 29 Dec 2018 22:51:10 -0500 Subject: [PATCH] Disable UPX by default in appveyor --- appveyor.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 96e2b95b4..47133318a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,6 +19,8 @@ environment: CCACHE_URL: http://alam.srb2.org/ccache.exe CCACHE_COMPRESS: true CCACHE_DIR: C:\Users\appveyor\.ccache + # Disable UPX by default. The user can override this in their Appveyor project settings + NOUPX: 1 cache: - nasm-2.12.01.zip @@ -56,10 +58,11 @@ before_build: - if [%CONFIGURATION%] == [SDL64] ( x86_64-w64-mingw32-gcc --version ) else ( i686-w64-mingw32-gcc --version ) - mingw32-make --version - nasm -v -- upx -V +- if not [%NOUPX%] == [1] ( upx -V ) - ccache -V - ccache -s -- set "SRB2_MFLAGS=-C src WARNINGMODE=1 CCACHE=1 GCC72=1 NOOBJDUMP=1" +- if [%NOUPX%] == [1] ( set "NOUPX=NOUPX=1" ) else ( set "NOUPX=" ) +- set "SRB2_MFLAGS=-C src WARNINGMODE=1 CCACHE=1 GCC72=1 NOOBJDUMP=1 %NOUPX%" - if [%CONFIGURATION%] == [SDL64] ( set "SRB2_MFLAGS=%SRB2_MFLAGS% MINGW64=1 SDL=1" ) else (