From 6e2d57e4ffeb387099c68d6c984e60e24ce46365 Mon Sep 17 00:00:00 2001 From: zhupengfei Date: Wed, 14 Aug 2019 08:51:43 +0800 Subject: [PATCH] travis: Update the frozen build to be a flagless Debug build This is useful to test whether Citra will compile without any CMake flags, and in Debug type. --- .travis.yml | 2 +- .travis/linux-frozen/docker.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 19e2664fc..ba721464f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,7 +38,7 @@ matrix: after_success: "./.travis/macos/upload.sh" cache: ccache - os: linux - env: NAME="linux build (frozen versions of dependencies)" + env: NAME="linux build (debug, frozen versions of dependencies, no additional CMake flags)" sudo: required dist: trusty services: docker diff --git a/.travis/linux-frozen/docker.sh b/.travis/linux-frozen/docker.sh index d69964a1a..39881568d 100755 --- a/.travis/linux-frozen/docker.sh +++ b/.travis/linux-frozen/docker.sh @@ -3,7 +3,7 @@ cd /citra mkdir build && cd build -cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ -DCITRA_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DUSE_DISCORD_PRESENCE=ON -DENABLE_FFMPEG=ON +cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ ninja ctest -VV -C Release