Skip to content

Commit

Permalink
add ccache to installation list
Browse files Browse the repository at this point in the history
  • Loading branch information
lucafedeli88 committed Apr 29, 2024
1 parent ce2110a commit f9e4531
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/dependencies/clang17.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ 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.
sudo apt-get -qqq update
sudo apt-get install -y \
cmake \
Expand All @@ -35,7 +37,8 @@ sudo apt-get install -y \
wget \
xz-utils \
curl \
git
git \
ccache

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

0 comments on commit f9e4531

Please sign in to comment.