@@ -205,7 +205,7 @@ jobs:
205
205
fi
206
206
207
207
- name : Upload agent jar
208
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
208
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
209
209
with :
210
210
name : opentelemetry-javaagent.jar
211
211
path : javaagent/build/libs/opentelemetry-javaagent-*-SNAPSHOT.jar
@@ -216,7 +216,7 @@ jobs:
216
216
mkdir sboms
217
217
cp javaagent/build/spdx/*.spdx.json sboms
218
218
219
- - uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
219
+ - uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
220
220
name : Upload SBOMs
221
221
with :
222
222
name : opentelemetry-java-instrumentation-SBOM.zip
@@ -272,7 +272,7 @@ jobs:
272
272
273
273
# vaadin tests use pnpm
274
274
- name : Cache pnpm modules
275
- uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
275
+ uses : actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
276
276
with :
277
277
path : ~/.pnpm-store
278
278
key : ${{ runner.os }}-test-cache-pnpm-modules
@@ -310,7 +310,6 @@ jobs:
310
310
-Porg.gradle.java.installations.paths=${{ steps.setup-test-java.outputs.path }}
311
311
-Porg.gradle.java.installations.auto-download=false
312
312
${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
313
- ${{ inputs.max-test-retries && format(' -PmaxTestRetries={0}', inputs.max-test-retries) || '' }}
314
313
315
314
- name : Build scan
316
315
if : ${{ !cancelled() && hashFiles('build-scan.txt') != '' }}
@@ -348,15 +347,15 @@ jobs:
348
347
349
348
- name : Upload deadlock detector artifacts if any
350
349
if : failure()
351
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
350
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
352
351
with :
353
352
name : deadlock-detector-test-${{ matrix.test-java-version }}-${{ matrix.vm }}-${{ matrix.test-partition }}
354
353
path : /tmp/deadlock-detector-*
355
354
if-no-files-found : ignore
356
355
357
356
- name : Upload jvm crash dump files if any
358
357
if : failure()
359
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
358
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
360
359
with :
361
360
name : javacore-test-${{ matrix.test-java-version }}-${{ matrix.test-partition }}
362
361
path : |
@@ -416,11 +415,11 @@ jobs:
416
415
run : ./gradlew :smoke-tests:test -PsmokeTestSuite=none --no-daemon ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
417
416
418
417
- name : Test
419
- run : ./gradlew :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
418
+ run : ./gradlew :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }} ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
420
419
421
420
- name : Upload jvm crash dump files if any
422
421
if : failure()
423
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
422
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
424
423
with :
425
424
name : javacore-smoke-test-${{ matrix.smoke-test-suite }}-${{ matrix.os }}
426
425
# we expect crash dumps either in root director or in smoke-tests
@@ -490,13 +489,17 @@ jobs:
490
489
working-directory : gradle-plugins
491
490
492
491
- name : Build distro
493
- run : ./gradlew build --init-script ../../.github/scripts/local.init.gradle.kts${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
492
+ run : ./gradlew build --init-script ../../.github/scripts/local.init.gradle.kts ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
494
493
working-directory : examples/distro
495
494
496
495
- name : Build extension
497
- run : ./gradlew build --init-script ../../.github/scripts/local.init.gradle.kts${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
496
+ run : ./gradlew build --init-script ../../.github/scripts/local.init.gradle.kts ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
498
497
working-directory : examples/extension
499
498
499
+ - name : Build benchmark-overhead
500
+ run : ./gradlew assemble ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
501
+ working-directory : benchmark-overhead
502
+
500
503
- name : Run muzzle check against extension
501
504
run : ./gradlew muzzle --init-script ../../.github/scripts/local.init.gradle.kts
502
505
working-directory : examples/extension
0 commit comments