From dc4d687e712e1ca96035624c4768792cff1ed60f Mon Sep 17 00:00:00 2001 From: Frank Dana Date: Thu, 18 Apr 2019 09:26:20 -0400 Subject: [PATCH] Travis CI: Also run `make install` Taking my own suggestion, this adds a `make install` step to all three (overkill, maybe?) Travis builds, using `DESTDIR=dist/` to keep the files local to the build dir. Meant to bring the CMake-managed install logic under CI verification. --- .travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4afd8467..2e7db59d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,8 @@ matrix: - cmake -D"CMAKE_BUILD_TYPE:STRING=Debug" ../ - make VERBOSE=1 - make os_test - + - make install DESTDIR=dist/ + - language: cpp name: "FFmpeg 3" before_script: @@ -31,7 +32,8 @@ matrix: - cmake -D"CMAKE_BUILD_TYPE:STRING=Debug" ../ - make VERBOSE=1 - make os_test - + - make install DESTDIR=dist/ + - language: cpp name: "FFmpeg 4" before_script: @@ -48,3 +50,4 @@ matrix: - cmake -D"CMAKE_BUILD_TYPE:STRING=Debug" ../ - make VERBOSE=1 - make os_test + - make install DESTDIR=dist/