Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/test-helpers.yml
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we don't need to many builds of this. Also this reduced the number of potential flake encounters until we sort this projects flaky tests.

Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@ jobs:
strategy:
fail-fast: false
matrix:
java-version: [8, 11, 17, 19]
java-version: [8, 19]
os: [ubuntu-latest]
include:
- java-version: 11
os: windows-latest
- java-version: 17
- java-version: 19
os: windows-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion lib/sdk/server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ libraries.test = [
"junit:junit:4.12",
"com.fasterxml.jackson.core:jackson-core:${versions.jackson}",
"com.fasterxml.jackson.core:jackson-databind:${versions.jackson}",
"com.launchdarkly:test-helpers:2.0.1",
"com.launchdarkly:test-helpers:2.1.0",
"io.projectreactor:reactor-core:${versions.reactorCore}", // this is to make javadoc happy when using the test classpath
]

Expand Down
2 changes: 1 addition & 1 deletion lib/sdk/server/contract-tests/service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ext.versions = [
"gson": "2.7",
"logback": "1.1.3",
"okhttp": "4.5.0",
"testHelpers": "2.0.1",
"testHelpers": "2.1.0",
"launchdarklyJavaSdkCommon": project(":sdk").versions["launchdarklyJavaSdkCommon"]
]

Expand Down