forked from magma/magma
-
Notifications
You must be signed in to change notification settings - Fork 1
85 lines (83 loc) · 2.38 KB
/
dockerfile-health.yml
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
name: "Dockerfile Health"
on: # yamllint disable-line rule:truthy
pull_request:
types:
- opened
- reopened
- synchronize
paths:
- .devcontainer/Dockerfile
- .github/workflows/dockerfile-health.yml
- lte/gateway/docker/mme/Dockerfile.ubuntu20.04
jobs:
build_ubuntu20_04_dockerfile:
env:
DOCKERFILE: lte/gateway/docker/mme/Dockerfile.ubuntu20.04
runs-on: ubuntu-latest
steps:
-
name: Check Out Repo
uses: actions/checkout@v2
-
name: Docker meta
id: meta
uses: crazy-max/ghaction-docker-meta@v2
with:
# list of Docker images to use as base name for tags
images: |
magma/mme_builder_focal
# generate Docker tags based on the following events/attributes
tags: |
type=sha
-
name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
-
name: Docker Build
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: ${{ env.DOCKERFILE }}
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
outputs: type=docker,dest=/tmp/mme_builder.tar
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
build_devcontainer_dockerfile:
env:
DOCKERFILE: .devcontainer/Dockerfile
runs-on: ubuntu-latest
steps:
-
name: Check Out Repo
uses: actions/checkout@v2
-
name: Docker meta
id: meta
uses: crazy-max/ghaction-docker-meta@v2
with:
# list of Docker images to use as base name for tags
images: |
magma/mme_builder_focal
# generate Docker tags based on the following events/attributes
tags: |
type=sha
-
name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
-
name: Docker Build
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: ${{ env.DOCKERFILE }}
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
outputs: type=docker,dest=/tmp/mme_builder.tar