Keep classes from Cassandra Java Driver #80
Workflow file for this run
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: "Continuous Integration" | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
latest-jaeger: | |
name: Latest Jaeger and Cassandra 4.x | |
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: test | |
# pin Jaeger version temporarily to work around build failures | |
run: JAEGER_VERSION=1.52.0 ./mvnw --batch-mode clean test | |
latest-jaeger-es7: | |
name: Latest Jaeger and ES7 | |
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 --batch-mode clean install -DskipTests | |
- name: test | |
run: ELASTICSEARCH_VERSION=7.3.0 ./mvnw --batch-mode 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 --batch-mode clean install -DskipTests | |
- name: test | |
run: ELASTICSEARCH_VERSION=8.3.1 ./mvnw --batch-mode clean test -pl jaeger-spark-dependencies-elasticsearch |