From 4af4ac40ce1f79d30460bcb8c34d11786c825137 Mon Sep 17 00:00:00 2001 From: Fernando Briano Date: Wed, 28 May 2025 10:57:54 +0100 Subject: [PATCH 1/2] [CI] Updates GitHub Actions --- .github/workflows/8.x.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 From 71b371f3dac2ef7d4c226993a264c0ffca6ca424 Mon Sep 17 00:00:00 2001 From: Fernando Briano Date: Mon, 31 Mar 2025 16:12:29 +0100 Subject: [PATCH 2/2] [Test] Only run perform_request_spec test when OTEL var is true --- elasticsearch-api/Rakefile | 1 + 1 file changed, 1 insertion(+) 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'