This commit is contained in:
Kevaundray Wedderburn
2025-05-11 18:47:19 +01:00
parent fb1b4876b5
commit ba443c270d
3 changed files with 119 additions and 0 deletions

36
.github/workflows/check_pico_image.yml vendored Normal file
View File

@@ -0,0 +1,36 @@
name: Check Pico Docker Image
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build_pico_image:
name: Build Pico Docker Image
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build dependent Docker base image
run: |
docker build \
--file docker/base/Dockerfile.base \
--tag ere-base:latest \
.
- name: Build Pico Docker image
run: |
docker build \
--file docker/pico/Dockerfile \
--tag ere-builder-pico-check:latest \
.