Travis: Build UWP also.

This commit is contained in:
Unknown W. Brackets 2020-05-25 08:48:52 -07:00
parent e299eb8743
commit 085a9ec0ce
2 changed files with 9 additions and 1 deletions

View File

@ -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
}

View File

@ -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