We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd6838d commit 4fda1fbCopy full SHA for 4fda1fb
.github/workflows/pr-build.yml
@@ -156,3 +156,18 @@ jobs:
156
arguments: build --stacktrace -PenableCoverage=true
157
- uses: codecov/codecov-action@v3
158
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
lambda-layer/build-layer.sh
@@ -1,4 +1,5 @@
1
#!/bin/bash
2
+set -e
3
4
SOURCEDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
5
0 commit comments