Skip to content
Snippets Groups Projects
Verified Commit b45b08cb authored by Rémy Coutable's avatar Rémy Coutable
Browse files

Run `bundle check` after `bundle install` instead of having a dedicated job for it


Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent d39b16d0
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -402,13 +402,6 @@ docs:check:links:
# Check the internal links
- bundle exec nanoc check internal_links
 
bundler:check:
stage: test
<<: *dedicated-runner
<<: *ruby-static-analysis
script:
- bundle check
bundler:audit:
stage: test
<<: *ruby-static-analysis
Loading
Loading
Loading
Loading
@@ -32,7 +32,7 @@ sed -i 's/localhost/redis/g' config/resque.yml
cp config/gitlab.yml.example config/gitlab.yml
 
if [ "$USE_BUNDLE_INSTALL" != "false" ]; then
retry bundle install --clean $BUNDLE_INSTALL_FLAGS
retry bundle install --clean $BUNDLE_INSTALL_FLAGS && bundle check
fi
 
# Only install knapsack after bundle install! Otherwise oddly some native
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment