b38fd876b2
* SDK-664: Updating the sample apps with x64 * Adding the yml for configuration * Updating the travis yml * Updating the project files to remove duplicate entries of x64 * Updating the configurations * Updating the yml to publish the Artifacts and rebasing master * Updating the verbosity of yml * Fix enum definition of ethinicity to the latest build changes * Adding the new AU's * Updating the README to indicate that the app supports x64 * Update linux SDK link to 3.1-396
14 lines
472 B
YAML
14 lines
472 B
YAML
dist: trusty
|
|
language: cpp
|
|
compiler:
|
|
- gcc-4.8
|
|
before_script:
|
|
- sudo apt-get install -y gcc-4.8 g++-4.8 libopencv-dev libboost1.55-all-dev cmake
|
|
- wget https://download.affectiva.com/linux/affdex-cpp-sdk-3.1-396-linux-64bit.tar.gz -O /tmp/affdex-sdk.tar.gz
|
|
- mkdir /tmp/affdex-sdk
|
|
- tar -xzvf /tmp/affdex-sdk.tar.gz -C /tmp/affdex-sdk
|
|
- mkdir build
|
|
- cd build
|
|
- cmake -DBOOST_ROOT=/usr/ -DOpenCV_DIR=/usr/ -DAFFDEX_DIR=/tmp/affdex-sdk ..
|
|
script:
|
|
- make
|