Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .ci/docker/common/install_arm.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
# Copyright 2025 Arm Limited and/or its affiliates.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

set -ex

install_arm_prerequiresites() {
apt-get update -y
apt-get install -y --no-install-recommends \
mesa-vulkan-drivers libvulkan1
rm -rf /var/lib/apt/lists/*
}

install_arm_prerequiresites
3 changes: 3 additions & 0 deletions .ci/docker/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ RUN if [ -n "${ANDROID_NDK_VERSION}" ]; then bash ./install_android.sh; fi
RUN rm install_android.sh

ARG ARM_SDK
COPY ./common/install_arm.sh install_arm.sh
RUN if [ -n "${ARM_SDK}" ]; then bash ./install_arm.sh; fi
RUN rm install_arm.sh

ARG ZEPHYR_SDK
COPY ./common/install_zephyr.sh install_zephyr.sh
Expand Down
Loading