openh264/.travis.yml

37 lines
845 B
YAML
Raw Normal View History

2013-12-13 17:59:52 +01:00
language: cpp
dist: trusty
2013-12-13 17:59:52 +01:00
compiler:
- g++
2013-12-13 17:59:52 +01:00
- clang
2013-12-13 19:00:08 +01:00
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq nasm g++-multilib gcc-multilib libc6-dev-i386
2014-06-18 04:54:16 +02:00
install:
- make gmp-bootstrap
- make gtest-bootstrap
before_script:
- WorkingDir=`pwd`
- cd test/encoder_binary_comparison
- ./run_PrepareAllTestData.sh 64
- cd ${WorkingDir}
env:
- TASK=UnitTest; TestParameter=""
2014-07-15 12:42:42 +02:00
- TASK=BinaryCompare; TestParameter=BA_MW_D.264
- TASK=BinaryCompare; TestParameter=CVPCMNL1_SVA_C.264
matrix:
exclude:
- compiler: clang
2014-07-15 12:42:42 +02:00
env: TASK=BinaryCompare; TestParameter=BA_MW_D.264
- compiler: clang
2014-07-15 12:42:42 +02:00
env: TASK=BinaryCompare; TestParameter=CVPCMNL1_SVA_C.264
2014-06-18 04:54:16 +02:00
script:
- echo "currrent test is for ${TASK}"
- echo "test parameter is ${TestParameter}"
- ./run_Test.sh ${TASK} ${TestParameter}