Skip to content

Commit f708687

Browse files
committed
ci: Don't install recommended packages on Ubuntu
We don't need the optional packages and save a little download/install time.
1 parent 01b1f7d commit f708687

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
Linux)
9898
echo 'Acquire::Retries "3";' | sudo tee /etc/apt/apt.conf.d/80-retries
9999
sudo apt-get update -yy
100-
sudo apt-get install -yy \
100+
sudo apt-get install -yy --no-install-recommends \
101101
ccache \
102102
cm-super \
103103
dvipng \

azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ stages:
9292
linux)
9393
echo 'Acquire::Retries "3";' | sudo tee /etc/apt/apt.conf.d/80-retries
9494
sudo apt update
95-
sudo apt install \
95+
sudo apt install --no-install-recommends \
9696
cm-super \
9797
dvipng \
9898
ffmpeg \

0 commit comments

Comments
 (0)