Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Elasticsearch spark version to 8.2.3 #126

Merged
merged 2 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/ci.yaml
Expand Up @@ -38,3 +38,20 @@ jobs:
run: ./mvnw clean install -DskipTests
- name: test
run: ELASTICSEARCH_VERSION=7.3.0 ./mvnw clean test -pl jaeger-spark-dependencies-elasticsearch

latest-jaeger-es8:
name: Latest Jaeger and ES8
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: temurin
java-version: '11'
# TODO remove once testcontainers are updated
- name: pull ryuk image
run: docker pull testcontainersofficial/ryuk:0.3.0
- name: compile
run: ./mvnw clean install -DskipTests
- name: test
run: ELASTICSEARCH_VERSION=8.3.1 ./mvnw clean test -pl jaeger-spark-dependencies-elasticsearch
2 changes: 1 addition & 1 deletion jaeger-spark-dependencies-elasticsearch/pom.xml
Expand Up @@ -41,7 +41,7 @@
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-spark-20_${version.scala.binary}</artifactId>
<version>7.13.4</version>
<version>8.2.3</version>
</dependency>

<dependency>
Expand Down