Skip to content

Commit 1a4d090

Browse files
authored
Toolkit: provide mechanism to auto-install build deps (#11081)
1 parent 8cb3ed2 commit 1a4d090

File tree

5 files changed

+103
-53
lines changed

5 files changed

+103
-53
lines changed

toolkit/docs/building/prerequisites-mariner.md

+4-30
Original file line numberDiff line numberDiff line change
@@ -7,36 +7,10 @@ This page lists host machine requirements for building with the Azure Linux tool
77

88
```bash
99
# Install required dependencies.
10-
# Recommended but not required: `pigz` for faster compression operations.
11-
sudo tdnf -y install \
12-
acl \
13-
binutils \
14-
cdrkit \
15-
curl \
16-
diffutils \
17-
dosfstools \
18-
gawk \
19-
glibc-devel \
20-
genisoimage \
21-
git \
22-
golang \
23-
jq \
24-
kernel-headers \
25-
make \
26-
moby-cli \
27-
moby-engine \
28-
openssl \
29-
parted \
30-
pigz \
31-
qemu-img \
32-
rpm \
33-
rpm-build \
34-
sudo \
35-
systemd \
36-
tar \
37-
wget \
38-
xfsprogs \
39-
zstd
10+
sudo ./toolkit/docs/building/prerequisites-mariner.sh
11+
12+
# Also supported is:
13+
# make -C toolkit install-prereqs
4014

4115
# Enable Docker daemon at boot
4216
sudo systemctl enable --now docker.service
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
#!/bin/bash
2+
# Copyright (c) Microsoft Corporation.
3+
# Licensed under the MIT License.
4+
5+
set -e
6+
7+
tdnf -y install \
8+
acl \
9+
binutils \
10+
cdrkit \
11+
curl \
12+
diffutils \
13+
dosfstools \
14+
gawk \
15+
genisoimage \
16+
git \
17+
glibc-devel \
18+
golang \
19+
jq \
20+
kernel-headers \
21+
make \
22+
moby-cli \
23+
moby-engine \
24+
openssl \
25+
parted \
26+
pigz \
27+
qemu-img \
28+
rpm \
29+
rpm-build \
30+
sudo \
31+
systemd \
32+
tar \
33+
wget \
34+
xfsprogs \
35+
zstd
36+
37+
script_file=$(readlink -f "$0")
38+
# md file is the same name as the script file, but with a .md extension
39+
md_file="${script_file%.*}.md"
40+
41+
echo ""
42+
echo "Install complete..."
43+
echo ""
44+
echo "**** Refer to ${md_file} for additional steps to complete the setup. ****"
45+
echo ""

toolkit/docs/building/prerequisites-ubuntu.md

+4-23
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,11 @@
66
This page lists host machine requirements for building with the Azure Linux toolkit. They cover building the toolchain, packages, and images on an Ubuntu 22.04 host.
77

88
```bash
9-
sudo apt-get update
10-
119
# Install required dependencies.
12-
# Recommended but not required: `pigz` for faster compression operations.
13-
sudo apt -y install \
14-
acl \
15-
curl \
16-
diffutils \
17-
gawk \
18-
genisoimage \
19-
git \
20-
golang-1.21-go \
21-
jq \
22-
make \
23-
parted \
24-
pigz \
25-
openssl \
26-
systemd \
27-
qemu-utils \
28-
rpm \
29-
tar \
30-
wget \
31-
xfsprogs \
32-
zstd
10+
sudo ./toolkit/docs/building/prerequisites-ubuntu.sh
11+
12+
# Also supported is:
13+
# make -C toolkit install-prereqs
3314

3415
# Fix go 1.21 link
3516
sudo ln -vsf /usr/lib/go-1.21/bin/go /usr/bin/go
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#!/bin/bash
2+
# Copyright (c) Microsoft Corporation.
3+
# Licensed under the MIT License.
4+
5+
set -e
6+
7+
apt update
8+
apt install -y \
9+
acl \
10+
curl \
11+
diffutils \
12+
gawk \
13+
genisoimage \
14+
git \
15+
golang-1.21-go \
16+
jq \
17+
make \
18+
openssl \
19+
parted \
20+
pigz \
21+
qemu-utils \
22+
rpm \
23+
systemd \
24+
tar \
25+
wget \
26+
xfsprogs \
27+
zstd
28+
29+
script_file=$(readlink -f "$0")
30+
# md file is the same name as the script file, but with a .md extension
31+
md_file="${script_file%.*}.md"
32+
33+
echo ""
34+
echo "**** Refer to ${md_file} for additional steps to complete the setup. ****"
35+
echo ""

toolkit/scripts/toolkit.mk

+15
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,18 @@ $(valid_arch_spec_names): $(go-specarchchecker) $(chroot_worker) $(local_specs)
127127
--log-level=$(LOG_LEVEL) \
128128
--log-file="$(valid_arch_spec_names_logs_path)" \
129129
--log-color="$(LOG_COLOR)"
130+
131+
##help:target:install-prereqs=Install build prerequisites automatically.
132+
install-prereqs:
133+
echo "Installing build prerequisites for AzureLinux..." && \
134+
current_os=$$(grep '^ID=' /etc/os-release | cut -d'=' -f2-) && \
135+
echo "Current OS: $$current_os" && \
136+
if [ "$$current_os" = "mariner" ] || [ "$$current_os" = "azurelinux" ]; then \
137+
scriptfile="$(toolkit_root)/docs/building/prerequisites-mariner.sh" ; \
138+
elif [ "$$current_os" = "ubuntu" ]; then \
139+
scriptfile="$(toolkit_root)/docs/building/prerequisites-ubuntu.sh" ; \
140+
else \
141+
$(call print_error,"Unsupported OS: $$current_os") ; \
142+
fi && \
143+
"$$scriptfile" || \
144+
$(call print_error,Install failed)

0 commit comments

Comments
 (0)