openh264/.travis.yml

36 lines
836 B
YAML
Raw Normal View History

2013-12-13 09:59:52 -07:00
language: cpp
2013-12-13 09:59:52 -07:00
compiler:
- g++
2013-12-13 09:59:52 -07:00
- clang
2013-12-13 10:00:08 -08:00
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq nasm g++-4.6-multilib gcc-multilib libc6-dev-i386
2014-06-17 19:54:16 -07: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 06:42:42 -04:00
- TASK=BinaryCompare; TestParameter=BA_MW_D.264
- TASK=BinaryCompare; TestParameter=CVPCMNL1_SVA_C.264
matrix:
exclude:
- compiler: clang
2014-07-15 06:42:42 -04:00
env: TASK=BinaryCompare; TestParameter=BA_MW_D.264
- compiler: clang
2014-07-15 06:42:42 -04:00
env: TASK=BinaryCompare; TestParameter=CVPCMNL1_SVA_C.264
2014-06-17 19:54:16 -07:00
script:
- echo "currrent test is for ${TASK}"
- echo "test parameter is ${TestParameter}"
- ./run_Test.sh ${TASK} ${TestParameter}