Some checks failed
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled
26 lines
444 B
Bash
Executable File
26 lines
444 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo "[ubuntu/dependencies] Installing Ubuntu build dependencies..."
|
|
|
|
apt-get update
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
debhelper \
|
|
dpkg-dev \
|
|
git \
|
|
tzdata \
|
|
lsb-release \
|
|
rsync \
|
|
bash \
|
|
curl \
|
|
make \
|
|
python3 \
|
|
python3-venv \
|
|
ca-certificates \
|
|
xz-utils
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
echo "[ubuntu/dependencies] Done."
|