mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-14 04:06:44 +00:00
Merge pull request #3030 from OpenMW/make_travis_great_again
Update .travis.yml
This commit is contained in:
commit
a038c448f2
1 changed files with 8 additions and 35 deletions
43
.travis.yml
43
.travis.yml
|
@ -2,19 +2,12 @@ language: cpp
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
- coverity_scan
|
|
||||||
- /openmw-.*$/
|
- /openmw-.*$/
|
||||||
env:
|
|
||||||
global:
|
|
||||||
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
|
|
||||||
# via the "travis encrypt" command using the project repo's public key
|
|
||||||
- secure: "jybGzAdUbqt9vWR/GEnRd96BgAi/7Zd1+2HK68j/i/8+/1YH2XxLOy4Jv/DUBhBlJIkxs/Xv8dRcUlFOclZDHX1d/9Qnsqd3oUVkD7k1y7cTOWy9TBQaE/v/kZo3LpzA3xPwwthrb0BvqIbOfIELi5fS5s8ba85WFRg3AX70wWE="
|
|
||||||
cache: ccache
|
cache: ccache
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
sources:
|
sources:
|
||||||
- sourceline: 'ppa:openmw/openmw'
|
- sourceline: 'ppa:openmw/openmw'
|
||||||
# - ubuntu-toolchain-r-test # for GCC-10
|
|
||||||
packages: [
|
packages: [
|
||||||
# Dev
|
# Dev
|
||||||
build-essential, cmake, clang-tools, ccache,
|
build-essential, cmake, clang-tools, ccache,
|
||||||
|
@ -23,32 +16,21 @@ addons:
|
||||||
# FFmpeg
|
# FFmpeg
|
||||||
libavcodec-dev, libavformat-dev, libavutil-dev, libswresample-dev, libswscale-dev,
|
libavcodec-dev, libavformat-dev, libavutil-dev, libswresample-dev, libswscale-dev,
|
||||||
# Audio, Video and Misc. deps
|
# Audio, Video and Misc. deps
|
||||||
libsdl2-dev, libqt5opengl5-dev, libopenal-dev, libunshield-dev, libtinyxml-dev, liblz4-dev
|
libsdl2-dev, libqt5opengl5-dev, libopenal-dev, libunshield-dev, libtinyxml-dev, liblz4-dev,
|
||||||
# The other ones from OpenMW ppa
|
# The other ones from OpenMW ppa
|
||||||
libbullet-dev, libopenscenegraph-dev, libmygui-dev
|
libbullet-dev, libopenscenegraph-dev, libmygui-dev
|
||||||
]
|
]
|
||||||
coverity_scan: # TODO: currently takes too long, disabled openmw/openmw-cs for now.
|
|
||||||
project:
|
|
||||||
name: "OpenMW/openmw"
|
|
||||||
description: "<Your project description here>"
|
|
||||||
branch_pattern: coverity_scan
|
|
||||||
notification_email: 1122069+psi29a@users.noreply.github.com
|
|
||||||
build_command_prepend: "cov-configure --comptype gcc --compiler gcc-5 --template; cmake . -DBUILD_OPENMW=FALSE -DBUILD_OPENCS=FALSE"
|
|
||||||
build_command: "make VERBOSE=1 -j3"
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- name: OpenMW (all) on MacOS 10.15 with Xcode 11.6
|
- name: OpenMW (all) on MacOS 10.15 with Xcode 11.6
|
||||||
os: osx
|
os: osx
|
||||||
osx_image: xcode11.6
|
osx_image: xcode11.6
|
||||||
if: branch != coverity_scan
|
|
||||||
- name: OpenMW (all) on Ubuntu Focal with GCC
|
- name: OpenMW (all) on Ubuntu Focal with GCC
|
||||||
os: linux
|
os: linux
|
||||||
dist: focal
|
dist: focal
|
||||||
if: branch != coverity_scan
|
|
||||||
- name: OpenMW (tests only) on Ubuntu Focal with GCC
|
- name: OpenMW (tests only) on Ubuntu Focal with GCC
|
||||||
os: linux
|
os: linux
|
||||||
dist: focal
|
dist: focal
|
||||||
if: branch != coverity_scan
|
|
||||||
env:
|
env:
|
||||||
- BUILD_TESTS_ONLY: 1
|
- BUILD_TESTS_ONLY: 1
|
||||||
- name: OpenMW (openmw) on Ubuntu Focal with Clang's Static Analysis
|
- name: OpenMW (openmw) on Ubuntu Focal with Clang's Static Analysis
|
||||||
|
@ -57,30 +39,21 @@ matrix:
|
||||||
env:
|
env:
|
||||||
- MATRIX_EVAL="CC=clang && CXX=clang++"
|
- MATRIX_EVAL="CC=clang && CXX=clang++"
|
||||||
- ANALYZE="scan-build --force-analyze-debug-code --use-cc clang --use-c++ clang++"
|
- ANALYZE="scan-build --force-analyze-debug-code --use-cc clang --use-c++ clang++"
|
||||||
if: branch != coverity_scan
|
|
||||||
compiler: clang
|
compiler: clang
|
||||||
- name: OpenMW Components Coverity Scan
|
|
||||||
os: linux
|
|
||||||
dist: focal
|
|
||||||
if: branch = coverity_scan
|
|
||||||
# allow_failures:
|
|
||||||
# - name: OpenMW (openmw) on Ubuntu Focal with GCC-10
|
|
||||||
# env:
|
|
||||||
# - MATRIX_EVAL="CC=gcc-10 && CXX=g++-10"
|
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then eval "${MATRIX_EVAL}"; fi
|
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then eval "${MATRIX_EVAL}"; fi
|
||||||
- if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then ./CI/before_install.${TRAVIS_OS_NAME}.sh; fi
|
- ./CI/before_install.${TRAVIS_OS_NAME}.sh
|
||||||
before_script:
|
before_script:
|
||||||
- ccache -z
|
- ccache -z
|
||||||
- if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then ./CI/before_script.${TRAVIS_OS_NAME}.sh; fi
|
- ./CI/before_script.${TRAVIS_OS_NAME}.sh
|
||||||
script:
|
script:
|
||||||
- cd ./build
|
- cd ./build
|
||||||
- if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then ${ANALYZE} make -j3; fi
|
- ${ANALYZE} make -j3;
|
||||||
- if [ "${COVERITY_SCAN_BRANCH}" != 1 ] && [ "${TRAVIS_OS_NAME}" = "osx" ]; then make package; fi
|
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then make package; fi
|
||||||
- if [ "${COVERITY_SCAN_BRANCH}" != 1 ] && [ "${TRAVIS_OS_NAME}" = "osx" ]; then ../CI/check_package.osx.sh; fi
|
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then ../CI/check_package.osx.sh; fi
|
||||||
- if [ "${COVERITY_SCAN_BRANCH}" != 1 ] && [ "${TRAVIS_OS_NAME}" = "linux" ] && [ "${BUILD_TESTS_ONLY}" ]; then ./openmw_test_suite; fi
|
- if [ "${TRAVIS_OS_NAME}" = "linux" ] && [ "${BUILD_TESTS_ONLY}" ]; then ./openmw_test_suite; fi
|
||||||
- if [ "${COVERITY_SCAN_BRANCH}" != 1 ] && [ "${TRAVIS_OS_NAME}" = "linux" ]; then cd .. && ./CI/check_tabs.sh; fi
|
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then cd .. && ./CI/check_tabs.sh; fi
|
||||||
- cd "${TRAVIS_BUILD_DIR}"
|
- cd "${TRAVIS_BUILD_DIR}"
|
||||||
- ccache -s
|
- ccache -s
|
||||||
deploy:
|
deploy:
|
||||||
|
|
Loading…
Reference in a new issue