We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57c251c commit 2362271Copy full SHA for 2362271
1 file changed
scripts/install.sh
@@ -2,8 +2,11 @@
2
#
3
# Install necessary softwares for Ubuntu.
4
5
-apt-get update
6
-apt-get install -y \
+# Remove large folder to save space
+rm -rf /opt/hostedtoolcache
7
+
8
+sudo apt-get update
9
+sudo apt-get install -y \
10
gcc-multilib \
11
git \
12
g++ \
@@ -19,3 +22,5 @@ apt-get install -y \
19
22
python3 -m pip install --upgrade pip
20
23
pip3 install gcovr==4.1
21
24
25
+# Upgrade cmake to the latest version.
26
+pip install --upgrade cmake
0 commit comments