remove superfluous log

This commit is contained in:
HoneyryderChuck 2020-10-07 02:19:14 +01:00
parent 7134e87b32
commit 02f6a71e5b
3 changed files with 4 additions and 7 deletions

View File

@ -88,7 +88,7 @@ jekyll:
BUNDLE_WITHOUT: test:coverage:assorted
script:
- apk --update add g++ make git
- bundle install
- bundle install --quiet
- bundle exec rake prepare_website
- bundle exec jekyll build -s www -d www/public
artifacts:
@ -108,7 +108,7 @@ coverage:
image: "ruby:2.7-alpine"
script:
- apk --update add g++ make
- bundle install
- bundle install --quiet
# this is a workaround, because simplecov doesn't support relative paths.
#
# https://github.com/simplecov-ruby/simplecov/issues/887

View File

@ -16,10 +16,7 @@ else
extra="-f docker-compose-gitlab.yml -f docker-compose-${RUBY}-${VERSION}.yml"
fi
docker-compose -f docker-compose.yml ${extra} -p ci build
docker-compose -f docker-compose.yml ${extra} -p ci up \
--exit-code-from httpx \
--abort-on-container-exit
docker-compose -f docker-compose.yml ${extra} -p ci run httpx
#
#

View File

@ -20,7 +20,7 @@ mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
gem install bundler -v="1.17.3" --no-doc --conservative
cd /home
bundle install
bundle install --quiet
bundle exec rake test:ci
RET=$?