diff --git a/.github/workflows/8.x.yml b/.github/workflows/8.x.yml index d0ba113aee..2d4c8fa615 100644 --- a/.github/workflows/8.x.yml +++ b/.github/workflows/8.x.yml @@ -1,11 +1,11 @@ -name: 8x +name: 8.19 on: push: branches: - - 8.x + - 8.19 pull_request: branches: - - 8.x + - 8.19 jobs: test-main: env: @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: [ '3.1', '3.2', '3.3', '3.4', 'jruby-9.3', 'jruby-9.4' ] + ruby: ['3.1', '3.2', '3.3', '3.4', 'jruby-9.3', 'jruby-9.4', 'jruby-10'] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/elasticsearch-api/Rakefile b/elasticsearch-api/Rakefile index 58c9dede1e..fe3b2f0faf 100644 --- a/elasticsearch-api/Rakefile +++ b/elasticsearch-api/Rakefile @@ -36,6 +36,7 @@ namespace :test do RSpec::Core::RakeTask.new(:spec) do |t| t.pattern = 'spec/elasticsearch/api/**/*_spec.rb' t.exclude_pattern = 'spec/platinum/**/*_spec.rb' + t.exclude_pattern += ',spec/elasticsearch/api/perform_request_spec.rb' unless ENV['TEST_WITH_OTEL'] end desc 'Run Rest API Spec tests'