Skip to content

Fix specs hanging on CI #11

Fix specs hanging on CI

Fix specs hanging on CI #11

Workflow file for this run

name: JRuby Build
on:
push:
branches:
- main
pull_request:
jobs:
rspec:
runs-on: ubuntu-latest
timeout-minutes: 20
env:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
BUNDLE_GEMFILE: gemfiles/jruby.gemfile
CI: true
DEBUG_NATS_TEST: ${{ runner.debug }}

Check failure on line 18 in .github/workflows/test-jruby.yml

View workflow run for this annotation

GitHub Actions / JRuby Build

Invalid workflow file

The workflow is not valid. .github/workflows/test-jruby.yml (Line: 18, Col: 24): Unrecognized named-value: 'runner'. Located at position 1 within expression: runner.debug
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: jruby
bundler-cache: true
- name: Run RSpec
# Mark failures as warnings for now due to high level of flakiness
# and occasional OOM-s on CI
continue-on-error: true
run: |
bundle exec rspec || DEBUG_NATS_TEST=true bundle exec rspec --only-failures