Skip to content

Commit

Permalink
Update Ubuntu.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbarton authored Jan 21, 2025
1 parent 50745f5 commit d388141
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,12 @@ jobs:
sudo apt-get update
sudo apt-get install git g++ debhelper devscripts gnupg python3 doxygen graphviz python3-sphinx
sudo apt-get install -y libc6-dbg
sudo apt-get install valgrind
export ARCHITECHURE=$(uname -m)
if [[ "$ARCHITECHURE" != "x86_64" ]]; then
sudo apt-get install valgrind
else
sudo snap install valgrind --classic
fi
sudo apt autoremove
sudo apt clean
# Install libraries used by the cppyy test suite
Expand Down

0 comments on commit d388141

Please sign in to comment.