Skip to content

Commit 2dcff14

Browse files
authored
Merge pull request #1853 from microsoft/update-submodule
Bump submodule
2 parents 23f7b19 + 919786c commit 2dcff14

File tree

19 files changed

+170
-155
lines changed

19 files changed

+170
-155
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ jobs:
3737
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
3838
- name: Build otel-fork
3939
run: |
40-
cd otel
41-
./gradlew publishToMavenLocal
40+
./otel/gradlew --project-dir otel/gradle-plugins publishToMavenLocal
41+
./otel/gradlew --project-dir otel :muzzle:publishToMavenLocal
42+
./otel/gradlew --project-dir otel publishToMavenLocal
4243
- name: Test
4344
# TODO enable build cache, either --build-cache here, or org.gradle.caching=true in gradle.properties
4445
run: ./gradlew check --stacktrace
@@ -90,8 +91,9 @@ jobs:
9091
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
9192
- name: Build otel-fork
9293
run: |
93-
cd otel
94-
./gradlew publishToMavenLocal
94+
./otel/gradlew --project-dir otel/gradle-plugins publishToMavenLocal
95+
./otel/gradlew --project-dir otel :muzzle:publishToMavenLocal
96+
./otel/gradlew --project-dir otel publishToMavenLocal
9597
- name: Test
9698
# TODO enable build cache, either --build-cache here, or org.gradle.caching=true in gradle.properties
9799
run: ./gradlew ${{ matrix.module }}:smokeTest

.github/workflows/pr.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ jobs:
3939
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
4040
- name: Build otel-fork
4141
run: |
42-
cd otel
43-
./gradlew publishToMavenLocal
42+
./otel/gradlew --project-dir otel/gradle-plugins publishToMavenLocal
43+
./otel/gradlew --project-dir otel :muzzle:publishToMavenLocal
44+
./otel/gradlew --project-dir otel publishToMavenLocal
4445
- name: Test
4546
# TODO enable build cache, either --build-cache here, or org.gradle.caching=true in gradle.properties
4647
run: ./gradlew check --stacktrace
@@ -92,8 +93,9 @@ jobs:
9293
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
9394
- name: Build otel-fork
9495
run: |
95-
cd otel
96-
./gradlew publishToMavenLocal
96+
./otel/gradlew --project-dir otel/gradle-plugins publishToMavenLocal
97+
./otel/gradlew --project-dir otel :muzzle:publishToMavenLocal
98+
./otel/gradlew --project-dir otel publishToMavenLocal
9799
- name: Test
98100
# TODO enable build cache, either --build-cache here, or org.gradle.caching=true in gradle.properties
99101
run: ./gradlew ${{ matrix.module }}:smokeTest

.lgtm.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ extraction:
77
java_version: 11
88
build_command: |
99
# needs Java 11, otherwise this could be done in before_index
10-
./otel/gradlew --project-dir ./otel --no-daemon publishToMavenLocal
10+
./otel/gradlew --project-dir otel/gradle-plugins publishToMavenLocal
11+
./otel/gradlew --project-dir otel publishToMavenLocal
1112
./gradlew --no-daemon testClasses

.pipelines/pipeline.user.windows.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,14 @@ restore:
3838
- !!defaultcommand
3939
name: 'Install Java 11 JDK'
4040
command: '.scripts/installJava11jdk.cmd'
41+
- !!defaultcommand
42+
name: 'Add OpenTelemetry to MavenLocal (pre-1)'
43+
command: '.scripts/ot-gradle.cmd'
44+
arguments: '--project-dir gradle-plugins publishToMavenLocal'
45+
- !!defaultcommand
46+
name: 'Add OpenTelemetry to MavenLocal (pre-2)'
47+
command: '.scripts/ot-gradle.cmd'
48+
arguments: ':muzzle:publishToMavenLocal'
4149
- !!defaultcommand
4250
name: 'Add OpenTelemetry to MavenLocal'
4351
command: '.scripts/ot-gradle.cmd'

agent/agent-bootstrap/gradle.lockfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ ch.qos.logback:logback-core:1.2.3=runtimeClasspath
88
com.google.guava:guava-bom:30.1.1-jre=runtimeClasspath
99
com.squareup.moshi:moshi:1.11.0=runtimeClasspath
1010
com.squareup.okio:okio:1.17.5=runtimeClasspath
11-
io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-annotation-support:1.4.0+ai.patch.1-alpha=runtimeClasspath
12-
io.opentelemetry.instrumentation:opentelemetry-instrumentation-api:1.4.0+ai.patch.1-alpha=runtimeClasspath
13-
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.4.0+ai.patch.1-alpha=runtimeClasspath
14-
io.opentelemetry.javaagent:opentelemetry-javaagent-bootstrap:1.4.0+ai.patch.1-alpha=runtimeClasspath
15-
io.opentelemetry.javaagent:opentelemetry-javaagent-instrumentation-api:1.4.0+ai.patch.1-alpha=runtimeClasspath
11+
io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-annotation-support:1.5.0-alpha-SNAPSHOT=runtimeClasspath
12+
io.opentelemetry.instrumentation:opentelemetry-instrumentation-api:1.5.0-alpha-SNAPSHOT=runtimeClasspath
13+
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.5.0-alpha-SNAPSHOT=runtimeClasspath
14+
io.opentelemetry.javaagent:opentelemetry-javaagent-bootstrap:1.5.0-alpha-SNAPSHOT=runtimeClasspath
15+
io.opentelemetry.javaagent:opentelemetry-javaagent-instrumentation-api:1.5.0-alpha-SNAPSHOT=runtimeClasspath
1616
io.opentelemetry:opentelemetry-api-metrics:1.4.1-alpha=runtimeClasspath
1717
io.opentelemetry:opentelemetry-api:1.4.1=runtimeClasspath
1818
io.opentelemetry:opentelemetry-bom-alpha:1.4.1-alpha=runtimeClasspath

agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file is expected to be part of source control.
44
com.google.errorprone:error_prone_annotations:2.7.1=runtimeClasspath
55
com.google.guava:guava-bom:30.1.1-jre=runtimeClasspath
6-
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.4.0+ai.patch.1-alpha=runtimeClasspath
6+
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.5.0-alpha-SNAPSHOT=runtimeClasspath
77
io.opentelemetry:opentelemetry-bom-alpha:1.4.1-alpha=runtimeClasspath
88
io.opentelemetry:opentelemetry-bom:1.4.1=runtimeClasspath
99
org.junit:junit-bom:5.7.2=runtimeClasspath

agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file is expected to be part of source control.
44
com.google.errorprone:error_prone_annotations:2.7.1=runtimeClasspath
55
com.google.guava:guava-bom:30.1.1-jre=runtimeClasspath
6-
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.4.0+ai.patch.1-alpha=runtimeClasspath
6+
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.5.0-alpha-SNAPSHOT=runtimeClasspath
77
io.opentelemetry:opentelemetry-bom-alpha:1.4.1-alpha=runtimeClasspath
88
io.opentelemetry:opentelemetry-bom:1.4.1=runtimeClasspath
99
org.junit:junit-bom:5.7.2=runtimeClasspath

agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
44
com.google.guava:guava-bom:30.1.1-jre=runtimeClasspath
5-
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.4.0+ai.patch.1-alpha=runtimeClasspath
5+
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.5.0-alpha-SNAPSHOT=runtimeClasspath
66
io.opentelemetry:opentelemetry-bom-alpha:1.4.1-alpha=runtimeClasspath
77
io.opentelemetry:opentelemetry-bom:1.4.1=runtimeClasspath
88
org.junit:junit-bom:5.7.2=runtimeClasspath

agent/agent-profiler/agent-alerting-api/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
44
com.google.guava:guava-bom:30.1.1-jre=runtimeClasspath
5-
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.4.0+ai.patch.1-alpha=runtimeClasspath
5+
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.5.0-alpha-SNAPSHOT=runtimeClasspath
66
io.opentelemetry:opentelemetry-bom-alpha:1.4.1-alpha=runtimeClasspath
77
io.opentelemetry:opentelemetry-bom:1.4.1=runtimeClasspath
88
org.junit:junit-bom:5.7.2=runtimeClasspath

agent/agent-profiler/agent-alerting/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
44
com.google.guava:guava-bom:30.1.1-jre=runtimeClasspath
5-
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.4.0+ai.patch.1-alpha=runtimeClasspath
5+
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.5.0-alpha-SNAPSHOT=runtimeClasspath
66
io.opentelemetry:opentelemetry-bom-alpha:1.4.1-alpha=runtimeClasspath
77
io.opentelemetry:opentelemetry-bom:1.4.1=runtimeClasspath
88
org.junit:junit-bom:5.7.2=runtimeClasspath

0 commit comments

Comments
 (0)