Skip to content

Commit 85c7a9e

Browse files
authored
Merge branch 'main' into peer-service-testing
2 parents bd99620 + c85ae13 commit 85c7a9e

File tree

59 files changed

+989
-153
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+989
-153
lines changed

.fossa.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,9 @@ targets:
388388
- type: gradle
389389
path: ./
390390
target: ':instrumentation:azure-core:azure-core-1.36:javaagent'
391+
- type: gradle
392+
path: ./
393+
target: ':instrumentation:azure-core:azure-core-1.53:javaagent'
391394
- type: gradle
392395
path: ./
393396
target: ':instrumentation:cassandra:cassandra-3.0:javaagent'

.github/workflows/build-pull-request.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ name: Build pull request
33
on:
44
pull_request:
55
types:
6-
- labeled
76
- opened
87
- synchronize
98
- reopened
9+
# called from rebuild-pull-request-on-label.yml
10+
workflow_call:
1011

1112
concurrency:
1213
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build on test labels
2+
3+
on:
4+
pull_request:
5+
types:
6+
- labeled
7+
- unlabeled
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
trigger-build:
14+
# Only run if one of the test labels was added
15+
if: |
16+
github.event.label.name == 'test openj9' ||
17+
github.event.label.name == 'test windows' ||
18+
github.event.label.name == 'test native'
19+
uses: ./.github/workflows/build-pull-request.yml

benchmark-overhead-jmh/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ otelJava {
1313
}
1414

1515
dependencies {
16-
jmhImplementation("org.springframework.boot:spring-boot-starter-web:3.5.6")
16+
jmhImplementation("org.springframework.boot:spring-boot-starter-web:3.5.7")
1717
}
1818

1919
tasks {

conventions/src/main/kotlin/otel.errorprone-conventions.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ tasks {
6363

6464
// TODO (trask) use animal sniffer
6565
disable("Java8ApiChecker")
66-
disable("AndroidJdkLibsChecker")
6766

6867
// apparently disabling android doesn't disable this
6968
disable("StaticOrDefaultInterfaceMethod")

custom-checks/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ dependencies {
1212
}
1313

1414
otelJava {
15-
minJavaVersionSupported.set(JavaVersion.VERSION_17)
15+
minJavaVersionSupported.set(JavaVersion.VERSION_21)
1616
}
1717

1818
// We cannot use "--release" javac option here because that will forbid exporting com.sun.tools package.
1919
// We also can't seem to use the toolchain without the "--release" option. So disable everything.
2020

2121
java {
22-
sourceCompatibility = JavaVersion.VERSION_17
23-
targetCompatibility = JavaVersion.VERSION_17
22+
sourceCompatibility = JavaVersion.VERSION_21
23+
targetCompatibility = JavaVersion.VERSION_21
2424
toolchain {
2525
languageVersion.set(null as JavaLanguageVersion?)
2626
}

dependencyManagement/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ val DEPENDENCY_BOMS = listOf(
3737

3838
val autoServiceVersion = "1.1.1"
3939
val autoValueVersion = "1.11.0"
40-
val errorProneVersion = "2.42.0"
40+
val errorProneVersion = "2.43.0"
4141
val byteBuddyVersion = "1.17.8"
4242
val asmVersion = "9.9"
4343
val jmhVersion = "1.37"

0 commit comments

Comments
 (0)