ElasticSearch v. 8 upgrade #643
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
name: CI | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
types: [ | ||
synchronize, # PR was updated | ||
opened, # PR was open | ||
reopened # PR was reopened | ||
] | ||
jobs: | ||
ruby-3: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ruby: [ '3.0', '3.1', '3.2' ] | ||
gemfile: [rails.6.1.activerecord, rails.7.0.activerecord, rails.7.1.activerecord] | ||
name: ${{ matrix.ruby }}-${{ matrix.gemfile }} | ||
env: | ||
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile | ||
services: | ||
redis: | ||
# Docker Hub image | ||
image: redis | ||
ports: | ||
- '6379:6379' | ||
# Set health checks to wait until redis has started | ||
options: >- | ||
--health-cmd "redis-cli ping" | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby }} | ||
bundler-cache: true | ||
- name: Start containers | ||
run: | | ||
docker compose up elasticsearch_test -d | ||
sleep 10 | ||
- name: Extract credentials | ||
run: docker compose cp elasticsearch_test:/usr/share/elasticsearch/config/certs/http_ca.crt {{ runner.temp }} | ||
run: docker compose exec elasticsearch_test "/usr/share/elasticsearch/bin/elasticsearch-reset-password" -u elastic -b | grep New | awk '{print "es_password="$3}' >> "$GITHUB_OUTPUT" | ||
- name: Tests | ||
run: bundle exec rspec | ||
env: | ||
ES_PASSWORD: ${{ steps.vars.outputs.es_password }} | ||
ES_CA_CERT: ${{ runner.temp }}/http_ca.crt | ||
rubocop: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.0 | ||
bundler-cache: true | ||
- run: bundle exec rubocop --format simple |