File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -156,3 +156,18 @@ jobs:
156156 arguments : build --stacktrace -PenableCoverage=true
157157 - uses : codecov/codecov-action@v3
158158
159+ build-lambda :
160+ runs-on : ubuntu-latest
161+ steps :
162+ - name : Checkout Repo @ SHA - ${{ github.sha }}
163+ uses : actions/checkout@v4
164+
165+ - name : Setup Java
166+ uses : actions/setup-java@v4
167+ with :
168+ java-version : 17
169+ distribution : temurin
170+
171+ - name : Build layer
172+ working-directory : lambda-layer
173+ run : ./build-layer.sh
Original file line number Diff line number Diff line change 11#! /bin/bash
2+ set -e
23
34SOURCEDIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd ) "
45
@@ -27,8 +28,6 @@ patch -p1 < "$SOURCEDIR"/../.github/patches/opentelemetry-java-instrumentation.p
2728# This patch is for Lambda related context propagation
2829patch -p1 < " $SOURCEDIR " /patches/opentelemetry-java-instrumentation.patch
2930
30- git add -A
31- git commit -m " Create patch version"
3231./gradlew publishToMavenLocal
3332popd
3433rm -rf opentelemetry-java-instrumentation
You can’t perform that action at this time.
0 commit comments