-
Notifications
You must be signed in to change notification settings - Fork 498
Expand file tree
/
Copy pathbuild-lambda-runtime-dockerfiles.yml
More file actions
64 lines (56 loc) · 1.96 KB
/
build-lambda-runtime-dockerfiles.yml
File metadata and controls
64 lines (56 loc) · 1.96 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
63
name: Build Lambda Runtime Images
on:
pull_request:
paths:
- "LambdaRuntimeDockerfiles/**"
push:
paths:
- "LambdaRuntimeDockerfiles/**"
permissions:
contents: read
jobs:
build-runtime-images:
name: Build runtime image (${{ matrix.name }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: NET 8 AMD64
dockerfile: LambdaRuntimeDockerfiles/Images/net8/amd64/Dockerfile
platform: linux/amd64
- name: NET 8 ARM64
dockerfile: LambdaRuntimeDockerfiles/Images/net8/arm64/Dockerfile
platform: linux/arm64
- name: NET 9 AMD64
dockerfile: LambdaRuntimeDockerfiles/Images/net9/amd64/Dockerfile
platform: linux/amd64
- name: NET 9 ARM64
dockerfile: LambdaRuntimeDockerfiles/Images/net9/arm64/Dockerfile
platform: linux/arm64
- name: NET 10 AMD64
dockerfile: LambdaRuntimeDockerfiles/Images/net10/amd64/Dockerfile
platform: linux/amd64
- name: NET 10 ARM64
dockerfile: LambdaRuntimeDockerfiles/Images/net10/arm64/Dockerfile
platform: linux/arm64
- name: NET 11 AMD64
dockerfile: LambdaRuntimeDockerfiles/Images/net11/amd64/Dockerfile
platform: linux/amd64
- name: NET 11 ARM64
dockerfile: LambdaRuntimeDockerfiles/Images/net11/arm64/Dockerfile
platform: linux/arm64
steps:
- uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 #v4.2.2
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build ${{ matrix.name }}
uses: docker/build-push-action@v6
with:
context: .
file: ${{ matrix.dockerfile }}
platforms: ${{ matrix.platform }}
push: false
provenance: false