Skip to content

Commit

Permalink
Forcing name of install file for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bernedom committed Jul 8, 2019
1 parent 9342c41 commit f9e0eca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ matrix:
- mkdir build && cd build && cmake .. -DCMAKE_INSTALL_PREFIX:PATH=${HOME}/local-install
- cmake --build .

# TODO automatically read version tag
- os: linux
name: installation testing cpack
compiler: gcc
Expand All @@ -96,10 +95,11 @@ matrix:
env:
- MATRIX_EVAL="CC=gcc-8 && CXX=g++-8"
script:
- mkdir build && cd build && cmake ..
- mkdir build && cd build
- cmake -DCPACK_PACKAGE_FILE_NAME=install-SI ..
- cmake --build . --config Release --target package -- -j $(nproc)
- mkdir ${HOME}/local-install
- ./SI-1.0.1-Linux.sh --prefix=${HOME}/local-install --skip-license --exclude-subdir
- ./install-SI.sh --prefix=${HOME}/local-install --skip-license --exclude-subdir
- cd ../example
- mkdir build && cd build && cmake .. -DCMAKE_INSTALL_PREFIX:PATH=${HOME}/local-install
- cmake --build .
Expand Down

0 comments on commit f9e0eca

Please sign in to comment.