diff options
| author | Bo Chen <[email protected]> | 2023-11-16 13:31:34 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-11-16 13:31:34 +0800 |
| commit | d17d7bdcbded725e729e324a3cb6b64077553151 (patch) | |
| tree | b489b8fc614f4ca126f5e0e459af6b33eeee63a5 /scripts/install.sh | |
| parent | cd87763dbd1a248925a52c95f38b468e3ccfee30 (diff) | |
| parent | 2362271d4b5359b2ed24ca5cb47d2df159e61248 (diff) | |
Merge pull request #314 from ting-ms/master
Update test script to generate JUnit format test report.
Diffstat (limited to 'scripts/install.sh')
| -rwxr-xr-x | scripts/install.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/install.sh b/scripts/install.sh index af7b2174..752a03b4 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -2,8 +2,11 @@ # # Install necessary softwares for Ubuntu. -apt-get update -apt-get install -y \ +# Remove large folder to save space +rm -rf /opt/hostedtoolcache + +sudo apt-get update +sudo apt-get install -y \ gcc-multilib \ git \ g++ \ @@ -19,3 +22,5 @@ apt-get install -y \ python3 -m pip install --upgrade pip pip3 install gcovr==4.1 +# Upgrade cmake to the latest version. +pip install --upgrade cmake |
