From 2372816ac0e286e76df9cd7c3b58cd110cf28bbd Mon Sep 17 00:00:00 2001 From: Carolina Lopes <116589288+ccruzagralopes@users.noreply.github.com> Date: Fri, 19 Jan 2024 14:24:15 -0300 Subject: [PATCH] Add energy management and microwave oven apps to chip-cert-bins image (#31527) --- integrations/docker/images/chip-cert-bins/Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/integrations/docker/images/chip-cert-bins/Dockerfile b/integrations/docker/images/chip-cert-bins/Dockerfile index 53102dacefedce..9aec06c3387855 100644 --- a/integrations/docker/images/chip-cert-bins/Dockerfile +++ b/integrations/docker/images/chip-cert-bins/Dockerfile @@ -188,6 +188,8 @@ RUN case ${TARGETPLATFORM} in \ --target linux-x64-lock-ipv6only \ --target linux-x64-simulated-app1-ipv6only \ --target linux-x64-lit-icd-ipv6only \ + --target linux-x64-energy-management-ipv6only \ + --target linux-x64-microwave-oven-ipv6only \ build \ && mv out/linux-x64-chip-tool-ipv6only-platform-mdns/chip-tool out/chip-tool \ && mv out/linux-x64-shell-ipv6only-platform-mdns/chip-shell out/chip-shell \ @@ -204,6 +206,8 @@ RUN case ${TARGETPLATFORM} in \ && mv out/linux-x64-lock-ipv6only/chip-lock-app out/chip-lock-app \ && mv out/linux-x64-simulated-app1-ipv6only/chip-app1 out/chip-app1 \ && mv out/linux-x64-lit-icd-ipv6only/lit-icd-app out/lit-icd-app \ + && mv out/linux-x64-energy-management-ipv6only/chip-energy-management-app out/chip-energy-management-app \ + && mv out/linux-x64-microwave-oven-ipv6only/chip-microwave-oven-app out/chip-microwave-oven-app \ ;; \ "linux/arm64")\ set -x \ @@ -224,6 +228,8 @@ RUN case ${TARGETPLATFORM} in \ --target linux-arm64-lock-ipv6only \ --target linux-arm64-simulated-app1-ipv6only \ --target linux-arm64-lit-icd-ipv6only \ + --target linux-arm64-energy-management-ipv6only \ + --target linux-arm64-microwave-oven-ipv6only \ build \ && mv out/linux-arm64-chip-tool-ipv6only-platform-mdns/chip-tool out/chip-tool \ && mv out/linux-arm64-shell-ipv6only-platform-mdns/chip-shell out/chip-shell \ @@ -240,6 +246,8 @@ RUN case ${TARGETPLATFORM} in \ && mv out/linux-arm64-lock-ipv6only/chip-lock-app out/chip-lock-app \ && mv out/linux-arm64-simulated-app1-ipv6only/chip-app1 out/chip-app1 \ && mv out/linux-arm64-lit-icd-ipv6only/lit-icd-app out/lit-icd-app \ + && mv out/linux-arm64-energy-management-ipv6only/chip-energy-management-app out/chip-energy-management-app \ + && mv out/linux-arm64-microwave-oven-ipv6only/chip-microwave-oven-app out/chip-microwave-oven-app \ ;; \ *) ;; \ esac @@ -269,6 +277,8 @@ COPY --from=chip-build-cert-bins /root/connectedhomeip/out/chip-ota-requestor-ap COPY --from=chip-build-cert-bins /root/connectedhomeip/out/chip-lock-app chip-lock-app COPY --from=chip-build-cert-bins /root/connectedhomeip/out/chip-app1 chip-app1 COPY --from=chip-build-cert-bins /root/connectedhomeip/out/lit-icd-app lit-icd-app +COPY --from=chip-build-cert-bins /root/connectedhomeip/out/chip-energy-management-app chip-energy-management-app +COPY --from=chip-build-cert-bins /root/connectedhomeip/out/chip-microwave-oven-app chip-microwave-oven-app # Stage 3.1 Setup the Matter Python environment COPY --from=chip-build-cert-bins /root/connectedhomeip/out/python_lib python_lib