generated from IRNAS/irnas-projects-template
-
Notifications
You must be signed in to change notification settings - Fork 1
77 lines (65 loc) · 2.22 KB
/
build-and-publish-vanilla-zephyr.yaml
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
name: Build and publish a Vanilla Zephyr Docker images
on:
push:
tags:
- "v*"
env:
REGISTRY: ghcr.io
IMAGE_NAME: irnas/vanilla-zephyr
jobs:
publish:
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
strategy:
matrix:
variant:
- zephyr_version: "v3.6.0"
mcuboot_version: "a4eda30f5b0cfd0cf15512be9dcd559239dbfc91"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3
- name: Log into GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{github.actor}}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata for CI image
id: meta-ci
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ matrix.variant.zephyr_version }}-ci
- name: Extract metadata for Dev image
id: meta-dev
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ matrix.variant.zephyr_version }}-dev
- name: Build and push CI image
id: push-ci
uses: docker/build-push-action@v5
with:
file: ./vanilla-zephyr/Dockerfile.ci
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta-ci.outputs.tags }}
labels: ${{ steps.meta-ci.outputs.labels }}
build-args: |
ZEPHYR_VERSION=${{ matrix.variant.zephyr_version }}
MCUBOOT_VERSION=${{ matrix.variant.mcuboot_version }}
- name: Build and push Dev image
id: push-dev
uses: docker/build-push-action@v5
with:
file: ./vanilla-zephyr/Dockerfile.dev
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta-dev.outputs.tags }}
labels: ${{ steps.meta-dev.outputs.labels }}
build-args: |
ZEPHYR_VERSION=${{ matrix.variant.zephyr_version }}
MCUBOOT_VERSION=${{ matrix.variant.mcuboot_version }}
BASE_IMAGE=${{ steps.meta-ci.outputs.tags }}