Skip to content

Commit

Permalink
Merge pull request #83 from MonoMotion/bugfix/ci-rake-fail
Browse files Browse the repository at this point in the history
Fix: Add rake once in CI images
  • Loading branch information
coord-e authored Jan 30, 2019
2 parents 5d6b34c + a706323 commit 1f35ba4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ci/scripts/linux/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# along with Flom. If not, see <http://www.gnu.org/licenses/>.
#

travis_wait docker run --rm -v $(pwd):/source -v $(pwd)/build:/build -e BUILD_TYPE=${BUILD_TYPE} -e CXX=${COMPILER} -e ENABLE_TEST=${ENABLE_TEST} -e RC_PARAMS="${RC_PARAMS}" test
travis_wait 30 docker run --rm -v $(pwd):/source -v $(pwd)/build:/build -e BUILD_TYPE=${BUILD_TYPE} -e CXX=${COMPILER} -e ENABLE_TEST=${ENABLE_TEST} -e RC_PARAMS="${RC_PARAMS}" test
2 changes: 1 addition & 1 deletion ci/test-image-cross/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN ["cross-build-start"]
RUN DEBIAN_FRONTEND=noninteractive \
&& apt-get update -y \
&& apt-get install -y --no-install-recommends build-essential wget bash git ruby ruby-dev rpm bsdtar libboost-dev cmake libprotobuf-dev protobuf-compiler \
&& gem install --no-document fpm
&& gem install --no-document rake fpm

RUN ["cross-build-end"]

Expand Down
2 changes: 1 addition & 1 deletion ci/test-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ENV BUILD_TYPE="Release"
RUN DEBIAN_FRONTEND=noninteractive \
&& apt-get update -y \
&& apt-get install -y --no-install-recommends build-essential clang libc++-dev libc++abi-dev wget bash git ruby ruby-dev rpm bsdtar libprotobuf-dev protobuf-compiler cmake libboost-dev \
&& gem install --no-document fpm
&& gem install --no-document rake fpm

COPY image-scripts/build.sh /
COPY image-scripts/package.sh /
Expand Down

0 comments on commit 1f35ba4

Please sign in to comment.