Skip to content

Commit cb1ed96

Browse files
committed
docker: Update platform matrix in on_push.yml and add dependencies in Containerfile
Refactor the platform matrix in the GitHub Actions workflow to include all relevant platforms. Additionally, added 'parted' and 'zip' to the list of apt dependencies in the Containerfile. Signed-off-by: Chiho Sin <[email protected]>
1 parent 6a68268 commit cb1ed96

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

.github/workflows/on_push.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
cpy_platform:
24-
# - analog
25-
# - atmel-samd
24+
- analog
25+
- atmel-samd
2626
- broadcom
27-
# - cxd56
28-
# - espressif
29-
# - litex
30-
# - mimxrt10xx
31-
# - nordic
32-
# - raspberrypi
33-
# - renode
34-
# - silabs
35-
# - stm
36-
# - zephyr-cp
27+
- cxd56
28+
- espressif
29+
- litex
30+
- mimxrt10xx
31+
- nordic
32+
- raspberrypi
33+
- renode
34+
- silabs
35+
- stm
36+
- zephyr-cp
3737
uses: ./.github/workflows/docker_manifest.yml
3838
with:
3939
cpy_platform: ${{ matrix.cpy_platform }}

Containerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ RUN apt-get update && apt-get install -y \
99
libx11-dev libinput-dev libxkbcommon-x11-dev \
1010
openssl libssl-dev libulfius-dev liborcania-dev \
1111
git git-lfs gettext cmake mtools floppyd dosfstools ninja-build \
12+
parted zip \
1213
&& rm -rf /var/lib/apt/lists/*
1314

1415
FROM base AS repo

0 commit comments

Comments
 (0)