Skip to content

feat(tracing, lambda-runtime): add support for custom writer with default tracing subscriber, add turnkey graceful shutdown helper behind 'graceful-shutdown' feature flag #204

feat(tracing, lambda-runtime): add support for custom writer with default tracing subscriber, add turnkey graceful shutdown helper behind 'graceful-shutdown' feature flag

feat(tracing, lambda-runtime): add support for custom writer with default tracing subscriber, add turnkey graceful shutdown helper behind 'graceful-shutdown' feature flag #204

Workflow file for this run

name: Check Lambda Runtime
on:
push:
paths:
- 'lambda-runtime-api-client/**'
- 'lambda-extension/**'
- 'lambda-runtime/**'
- 'Cargo.toml'
pull_request:
paths:
- 'lambda-runtime-api-client/**'
- 'lambda-extension/**'
- 'lambda-runtime/**'
- 'Cargo.toml'
jobs:
build-runtime:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- "1.81.0" # Current MSRV
- stable
env:
RUST_BACKTRACE: 1
steps:
- uses: actions/checkout@v3
- name: Build Runtime API Client
uses: ./.github/actions/rust-build
with:
package: lambda_runtime_api_client
toolchain: ${{ matrix.toolchain}}
- name: Build Extensions runtime
uses: ./.github/actions/rust-build
with:
package: lambda-extension
toolchain: ${{ matrix.toolchain}}