Skip to content

Commit

Permalink
Adding manylinux
Browse files Browse the repository at this point in the history
  • Loading branch information
scrgiorgio committed Nov 20, 2018
1 parent 4ba2747 commit 7654fed
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,12 @@ matrix:
script:
- |
if [[ ${DOCKER_IMAGE} != "" ]]; then
docker run -it -v "${TRAVIS_BUILD_DIR}":"${TRAVIS_BUILD_DIR}" ${DOCKER_IMAGE} /bin/bash
fi
cd "${TRAVIS_BUILD_DIR}"
bash ./CMake/build_${OS_NAME}.sh
if [[ ${DOCKER_IMAGE} != "" ]]; then
exit
docker run --name MYDOCKER -it -d -v "${TRAVIS_BUILD_DIR}":"${TRAVIS_BUILD_DIR}" ${DOCKER_IMAGE}
docker exec MYDOCKER cd "${TRAVIS_BUILD_DIR}"
docker exec MYDOCKER /bin/bash ./CMake/build_${OS_NAME}.sh
else
cd "${TRAVIS_BUILD_DIR}"
/bin/bash ./CMake/build_${OS_NAME}.sh
fi

cd "${TRAVIS_BUILD_DIR}/build/${OS_NAME}"
Expand Down

0 comments on commit 7654fed

Please sign in to comment.