From 085a9ec0ce7b78bc492d6b18541749e661ec3515 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Mon, 25 May 2020 08:48:52 -0700 Subject: [PATCH] Travis: Build UWP also. --- .travis.sh | 6 +++++- .travis.yml | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.travis.sh b/.travis.sh index 5e6afecd23..eaa0e8eaf0 100644 --- a/.travis.sh +++ b/.travis.sh @@ -171,7 +171,11 @@ travis_script() { sed -i 's/>ProgramDatabase<\/DebugInformationFormat>/><\/DebugInformationFormat>/g' $f done - msbuild.exe Windows\\PPSSPP.sln -m -p:CLToolExe=clcache.exe -p:Configuration=Release -p:Platform=x64 -p:TrackFileAccess=false + if [ "$UWP" == "TRUE" ]; then + msbuild.exe UWP\\PPSSPP_UWP.sln -m -p:CLToolExe=clcache.exe -p:Configuration=Release -p:Platform=x64 -p:TrackFileAccess=false -p:AppxPackageSigningEnabled=false + else + msbuild.exe Windows\\PPSSPP.sln -m -p:CLToolExe=clcache.exe -p:Configuration=Release -p:Platform=x64 -p:TrackFileAccess=false + fi fi } diff --git a/.travis.yml b/.travis.yml index b5fc79998f..9057234e50 100644 --- a/.travis.yml +++ b/.travis.yml @@ -96,6 +96,10 @@ jobs: - os: windows compiler: "msvc2017" env: PPSSPP_BUILD_TYPE=Windows + - os: windows + compiler: "msvc2017" + env: PPSSPP_BUILD_TYPE=Windows + UWP=TRUE before_install: - travis_retry bash .travis.sh travis_before_install