-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
59 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,10 @@ on: [push] | |
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
ruby: ['3.0'] | ||
ruby: ['3.0', '3.1', '3.2', '3.3'] | ||
|
||
services: | ||
postgres: | ||
|
@@ -28,67 +29,69 @@ jobs: | |
--health-retries 5 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Ruby - Set up | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby }} | ||
- uses: actions/checkout@v4 | ||
- name: Ruby - Set up | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby }} | ||
bundler-cache: true | ||
|
||
- name: Solr - Create container | ||
run: docker run -d -p 8983:8983 geoblacklight/solr:8.9-v1.0.0 server/scripts/ci-start.sh | ||
- name: Solr - Create container | ||
run: docker run -d -p 8983:8983 geoblacklight/solr:8.9-v1.0.0 server/scripts/ci-start.sh | ||
|
||
- name: Bundler - Install | ||
run: gem install bundler -v 2.3.5 | ||
- name: Bundler - Install | ||
run: gem install bundler -v 2.3.5 | ||
|
||
- name: Bundler - Install dependencies | ||
run: bundle _2.3.5_ install | ||
env: | ||
rails_version: 6.1.5 | ||
- name: Bundler - Install dependencies | ||
run: bundle _2.3.5_ install | ||
env: | ||
rails_version: 7.0.8 | ||
|
||
- name: Node - v14 | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
- name: Node - v14 | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
|
||
- name: Yarn - Setup | ||
run: exec "yarnpkg" | ||
- name: Yarn - Setup | ||
run: exec "yarnpkg" | ||
|
||
- name: Solr - Load config into solr | ||
run: | | ||
cd solr/conf | ||
zip -1 -r solr_config.zip ./* | ||
curl -H "Content-type:application/octet-stream" --data-binary @solr_config.zip "http://solr:[email protected]:8983/solr/admin/configs?action=UPLOAD&name=blacklight" | ||
curl -H 'Content-type: application/json' http://solr:[email protected]:8983/api/collections/ -d '{create: {name: blacklight-core, config: blacklight, numShards: 1}}' | ||
- name: Solr - Load config into solr | ||
run: | | ||
cd solr/conf | ||
zip -1 -r solr_config.zip ./* | ||
curl -H "Content-type:application/octet-stream" --data-binary @solr_config.zip "http://solr:[email protected]:8983/solr/admin/configs?action=UPLOAD&name=blacklight" | ||
curl -H 'Content-type: application/json' http://solr:[email protected]:8983/api/collections/ -d '{create: {name: blacklight-core, config: blacklight, numShards: 1}}' | ||
- name: Rails - Database setup | ||
env: | ||
RAILS_ENV: test | ||
run: | | ||
bundle exec rails db:schema:load | ||
bin/rails db:migrate RAILS_ENV=test | ||
- name: Rails - Database setup | ||
env: | ||
RAILS_ENV: test | ||
run: | | ||
bundle exec rails db:schema:load | ||
bin/rails db:migrate RAILS_ENV=test | ||
- name: Rails - Run tests | ||
env: | ||
RAILS_ENV: test | ||
rails_version: 7.0.8 | ||
ENGINE_CART_RAILS_OPTIONS: '--skip-git --skip-listen --skip-spring --skip-keeps --skip-action-cable --skip-coffee --skip-test' | ||
SOLR_URL: http://solr:SolrRocks@localhost:8983/solr/blacklight-core | ||
FARADAY_VERSION: ${{ matrix.faraday_version }} | ||
CI: true | ||
POSTGRES_HOST: 127.0.0.1 | ||
POSTGRES_PORT: 5432 | ||
POSTGRES_DB: geoblacklight_test | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
DISABLE_SPRING: 1 | ||
run: | | ||
more config/database.yml | ||
bundle exec rake geoportal:index:seed | ||
bundle exec rails test:system test | ||
- name: Rails - Run tests | ||
env: | ||
RAILS_ENV: test | ||
rails_version: 7.0.8 | ||
ENGINE_CART_RAILS_OPTIONS: '--skip-git --skip-listen --skip-spring --skip-keeps --skip-action-cable --skip-coffee --skip-test' | ||
SOLR_URL: http://solr:SolrRocks@localhost:8983/solr/blacklight-core | ||
FARADAY_VERSION: ${{ matrix.faraday_version }} | ||
CI: true | ||
POSTGRES_HOST: 127.0.0.1 | ||
POSTGRES_PORT: 5432 | ||
POSTGRES_DB: geoblacklight_test | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
DISABLE_SPRING: 1 | ||
run: | | ||
more config/database.yml | ||
printenv POSTGRES_DB | ||
bundle exec rake geoportal:index:seed | ||
bundle exec rails test:system test | ||
- name: Artifacts - Upload coverage | ||
uses: actions/upload-artifact@v2 | ||
if: always() | ||
with: | ||
name: coverage | ||
path: coverage/ | ||
- name: Artifacts - Upload coverage | ||
uses: actions/upload-artifact@v2 | ||
if: always() | ||
with: | ||
name: coverage | ||
path: coverage/ |