From b48f06d42e0b29438c7aed51c64112eb9c3bbe67 Mon Sep 17 00:00:00 2001 From: Tadas Baltrusaitis Date: Mon, 7 May 2018 09:27:47 +0100 Subject: [PATCH] Changing testing scripts for CI. --- .travis.yml | 3 ++- appveyor.yml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a936b0d2..c384c416 100644 --- a/.travis.yml +++ b/.travis.yml @@ -80,4 +80,5 @@ script: - cmake -D CMAKE_BUILD_TYPE=RELEASE CMAKE_CXX_FLAGS="-std=c++11" -D CMAKE_EXE_LINKER_FLAGS="-std=c++11" .. - make - ../build/bin/FaceLandmarkImg -inroot ../samples -f sample1.jpg -out_dir data -of sample1.txt -multi_view 1 -wild -q - - ../build/bin/FeatureExtraction -fdir "../samples/image_sequence" -out_dir output -q \ No newline at end of file + - ../build/bin/FeatureExtraction -fdir "../samples/image_sequence" -out_dir output -q + - ../build/bin/FaceLandmarkVidMulti -fdir ../samples/image_sequence -q -mloc model/main_clnf_general.txt \ No newline at end of file diff --git a/appveyor.yml b/appveyor.yml index ea0ac8f5..02af0401 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -36,6 +36,6 @@ test_script: - cmd: if exist Release (cd Release) - cmd: dir - cmd: if exist "../samples" (FaceLandmarkImg.exe -inroot ../samples -f sample1.jpg -out_dir out_data -q) else (FaceLandmarkImg.exe -inroot ../../samples -f sample1.jpg -out_dir out_data -q) - - cmd: if exist "../samples" (FaceLandmarkVidMulti.exe -fdir ../samples/image_sequence -q) else (FaceLandmarkVidMulti.exe -fdir ../../samples/image_sequence -q) + - cmd: if exist "../samples" (FaceLandmarkVidMulti.exe -fdir ../samples/image_sequence -q -mloc model/main_clnf_general.txt) else (FaceLandmarkVidMulti.exe -fdir ../../samples/image_sequence -q -mloc model/main_clnf_general.txt) - cmd: if exist "../samples" (FeatureExtraction.exe -fdir "../samples/image_sequence" -q) else (FeatureExtraction.exe -fdir "../../samples/image_sequence" -q) - cmd: if exist "../samples" (FaceLandmarkVid.exe -f "../samples/default.wmv" -q) else (FaceLandmarkVid.exe -f "../../samples/default.wmv" -q)