mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
commit
4f21cef3af
3 changed files with 13 additions and 9 deletions
11
.travis.yml
11
.travis.yml
|
@ -29,6 +29,8 @@ before_install:
|
|||
aria2c -x 16 http://www.cmake.org/files/v3.0/cmake-3.0.0-Linux-i386.sh &&
|
||||
chmod a+x cmake-3.0.0-Linux-i386.sh &&
|
||||
sudo ./cmake-3.0.0-Linux-i386.sh --skip-license --prefix=/usr;
|
||||
# Add coverall for C++ so coverity could be triggered. Even it should be --coverage and gcov.
|
||||
- sudo pip install cpp-coveralls
|
||||
|
||||
before_script:
|
||||
- git submodule update --init asmjit ffmpeg llvm
|
||||
|
@ -51,5 +53,12 @@ addons:
|
|||
build_command: "make -j 4"
|
||||
branch_pattern: coverity_scan
|
||||
|
||||
# These modifys are from https://github.com/devernay/cminpack/blob/master/.travis.yml
|
||||
# It passed but when coverall it failed.
|
||||
script:
|
||||
- if [ ${COVERITY_SCAN_BRANCH} != 1 ]; then make -j 4; fi
|
||||
# Add a command to show all the variables now. maybe only useful for debugging travis.
|
||||
- echo "--Shell Export Lists START--" ; export -p; echo "--Shell Export Lists STOP--"
|
||||
- if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then make -j 4; fi
|
||||
after_success:
|
||||
- if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then coveralls --extension .c --extension .cpp --extension .h; fi
|
||||
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
RPCS3
|
||||
=====
|
||||
|
||||
[](https://travis-ci.org/DHrpcs3/rpcs3)
|
||||
|
||||
<a href="https://scan.coverity.com/projects/3960">
|
||||
<img alt="Coverity Scan Build Status"
|
||||
src="https://scan.coverity.com/projects/3960/badge.svg"/>
|
||||
</a>
|
||||
|
||||
[](https://travis-ci.org/RPCS3/rpcs3)
|
||||
[](https://scan.coverity.com/projects/3960)
|
||||
[](https://coveralls.io/r/DHrpcs3/rpcs3)
|
||||
|
||||
An open-source PlayStation 3 emulator/debugger written in C++.
|
||||
|
|
|
@ -13,7 +13,7 @@ rem // A copy of the GPL 2.0 should have been included with the program.
|
|||
rem // If not, see http://www.gnu.org/licenses/
|
||||
|
||||
rem // Official git repository and contact information can be found at
|
||||
rem // https://github.com/DHrpcs3/rpcs3 and http://rpcs3.net/.
|
||||
rem // https://github.com/RPCS3/rpcs3 and http://rpcs3.net/.
|
||||
|
||||
setlocal ENABLEDELAYEDEXPANSION
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue