forked from aws/aws-lambda-rust-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (59 loc) · 1.79 KB
/
build-runtime.yml
File metadata and controls
62 lines (59 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Check Lambda Runtime
on:
push:
paths:
- 'lambda-runtime-api-client/**'
- 'lambda-runtime/**'
- 'lambda-http/**'
- 'Cargo.toml'
pull_request:
paths:
- 'lambda-runtime-api-client/**'
- 'lambda-runtime/**'
- 'lambda-http/**'
- '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 Functions runtime
uses: ./.github/actions/rust-build
with:
package: lambda_runtime
toolchain: ${{ matrix.toolchain}}
- name: Build HTTP layer
uses: ./.github/actions/rust-build
with:
package: lambda_http
toolchain: ${{ matrix.toolchain}}
semver:
name: semver
needs: build-runtime
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check `lambda_runtime_api_client`, `lambda_runtime`, lambda_http` semver with only default features
uses: obi1kenobi/cargo-semver-checks-action@v2
with:
rust-toolchain: stable
package: lambda_runtime_api_client, lambda_runtime, lambda_http
feature-group: default-features
- name: Check `lambda_runtime_api_client`, `lambda_runtime`, lambda_http` semver with all features
uses: obi1kenobi/cargo-semver-checks-action@v2
with:
rust-toolchain: stable
package: lambda_runtime_api_client, lambda_runtime, lambda_http
feature-group: all-features