This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
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 Docker Hub | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{github.actor}} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push ci image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./vanilla-zephyr/Dockerfile.ci | |
push: ${{ github.event_name != 'pull_request' }} | |
platforms: linux/amd64,linux/arm64 | |
provenance: false | |
tags: irnas/vanilla-zephyr-ci-${{ matrix.variant.zephyr_version}}:latest | |
build-args: | | |
ZEPHYR_VERSION=${{ matrix.variant.zephyr_version }} | |
MCUBOOT_VERSION=${{ matrix.variant.mcuboot_version }} | |
- name: Build and push dev image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./vanilla-zephyr/Dockerfile.dev | |
push: ${{ github.event_name != 'pull_request' }} | |
platforms: linux/amd64,linux/arm64 | |
provenance: false | |
tags: irnas/vanilla-zephyr-dev-${{ matrix.variant.zephyr_version}}:latest | |
build-args: | | |
BASE_IMAGE=irnas/vanilla-zephyr-ci:${{ matrix.variant.zephyr_version}} | |
ZEPHYR_VERSION=${{ matrix.variant.zephyr_version }} | |
MCUBOOT_VERSION=${{ matrix.variant.mcuboot_version }} |