Skip to content

Commit

Permalink
Merge pull request #1224 from OregonDigital/update/hyrax3-rc1
Browse files Browse the repository at this point in the history
Update to Hyrax 3.0.0-RC1
  • Loading branch information
straleyb committed Jul 1, 2020
2 parents 8bc779e + 88e186a commit 6301211
Show file tree
Hide file tree
Showing 31 changed files with 385 additions and 245 deletions.
8 changes: 7 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- v2-bundle-{{ checksum "Gemfile.lock" }}
- run:
name: Update bundler
command: gem install bundler -v 1.17.2
command: gem install bundler -v 2.1.4
- run:
name: Install dependencies
command: bundle check || bundle install
Expand All @@ -64,6 +64,9 @@ jobs:
steps:
- attach_workspace:
at: ~/
- run:
name: Update bundler
command: gem install bundler -v 2.1.4
- run: bundle exec rubocop
test:
docker:
Expand Down Expand Up @@ -119,6 +122,9 @@ jobs:
zip -1 -r solr_hyrax_config.zip ./*
curl -H "Content-type:application/octet-stream" --data-binary @solr_hyrax_config.zip "http://localhost:8985/solr/admin/configs?action=UPLOAD&name=hyrax"
curl -H 'Content-type: application/json' http://localhost:8985/api/collections/ -d '{create: {name: hydra-test, config: hyrax, numShards: 1}}'
- run:
name: Update bundler
command: gem install bundler -v 2.1.4
- run:
name: Wait for DB
command: dockerize -wait tcp://localhost:5432 -timeout 1m
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ coverage/*

/public/system
/public/branding
/public/uv

/vendor/bundle
.byebug_history
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.5.5 as bundler
FROM ruby:2.5.8 as bundler

# Necessary for bundler to operate properly
ENV LANG C.UTF-8
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ gem 'browse-everything'
# been added to either gemspecs
gem 'coffee-rails', '~> 4.2'
gem 'devise'
gem 'hydra-role-management', '~> 1.0.2'
gem 'hyrax', github: 'samvera/hyrax', tag: 'v2.7.0'
gem 'hydra-role-management'
gem 'hyrax', '3.0.0-rc1'
gem 'hyrax-migrator', github: 'OregonDigital/hyrax-migrator', branch: 'master'
gem 'jquery-rails'
gem 'pg'
Expand Down

0 comments on commit 6301211

Please sign in to comment.