Skip to content

Merge branch 'release/0.4.1' #236

Merge branch 'release/0.4.1'

Merge branch 'release/0.4.1' #236

Workflow file for this run

name: CI
on: [push]
jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- name: Install dependencies
run: bundle install
- name: Run linter
run: bundle exec standardrb
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.0.6']
services:
postgres:
image: postgres:latest
env:
POSTGRES_HOST: 127.0.0.1
POSTGRES_PORT: 5432
POSTGRES_DB: geoblacklight_test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
# Set health checks to wait until postgres has started
options:
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- 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.4.13
- name: Bundler - Install dependencies
run: bundle _2.4.13_ install
env:
rails_version: 7.0.5
- name: Node - v14 (Yes... 14 avoids the digital envelope routines::unsupported error seen on 18)
uses: actions/setup-node@v2
with:
node-version: '14.18.1'
- 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:SolrRocks@127.0.0.1:8983/solr/admin/configs?action=UPLOAD&name=blacklight"
curl -H 'Content-type: application/json' http://solr:SolrRocks@127.0.0.1:8983/api/collections/ -d '{create: {name: blacklight-core, config: blacklight, numShards: 1}}'
- name: Rails - Run tests
run: bundle exec rake ci
env:
RAILS_ENV: test
rails_version: 6.1.7.4
ENGINE_CART_RAILS_OPTIONS: '--skip-git --skip-listen --skip-spring --skip-keeps --skip-coffee'
SOLR_URL: http://solr:SolrRocks@localhost:8983/solr/blacklight-core
- name: Artifacts - Upload coverage
uses: actions/upload-artifact@v2
if: always()
with:
name: coverage
path: coverage/