Skip to content

Commit

Permalink
add pkg-config to install list
Browse files Browse the repository at this point in the history
  • Loading branch information
lucafedeli88 committed Apr 29, 2024
1 parent f9e4531 commit 44a976d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/dependencies/clang17.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ apt-get -y install sudo
# failed files the given number of times.
echo 'Acquire::Retries "3";' | sudo tee /etc/apt/apt.conf.d/80-retries

# Note: this dependency file is currently used within a docker container,
# which does not come with wget, xz-utils, curl, git and ccache pre-installed.
# This dependency file is currently used within a docker container,
# which does not come (among others) with wget, xz-utils, curl, git,
# ccache, and pkg-config pre-installed.
sudo apt-get -qqq update
sudo apt-get install -y \
cmake \
Expand All @@ -38,7 +39,8 @@ sudo apt-get install -y \
xz-utils \
curl \
git \
ccache
ccache \
pkg-config

# Use clang 17
export CXX=$(which clang++-17)
Expand Down

0 comments on commit 44a976d

Please sign in to comment.