Files
cdba/ci/alpine.sh

30 lines
441 B
Bash
Raw Permalink Normal View History

#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
#
# Copyright (c) 2021 Canonical Ltd.
# Copyright (c) 2023 Linaro Ltd
# Author: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
# <krzk@kernel.org>
#
set -ex
PKGS_CC="gcc"
case $CC in
clang*)
PKGS_CC="clang"
;;
esac
apk add \
linux-headers \
libftdi1-dev \
yaml-dev \
eudev-dev \
meson \
musl-dev \
libc-dev \
$PKGS_CC
echo "Install finished: $0"