diff options
| author | TiejunZhou <[email protected]> | 2023-04-13 16:57:35 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-04-13 16:57:35 +0800 |
| commit | 487ca45752ba350733f09ebce512c89544e190ec (patch) | |
| tree | f5d38d89810821bcf049803fd5150b823fd8c664 /scripts/install.sh | |
| parent | ac3b6b326cd7dac0373282c6f557d0d51764e34a (diff) | |
| parent | 5f430f22e2c00f2c079c91f48c9e2a0fc0bbbf47 (diff) | |
Merge pull request #244 from azure-rtos/tizho/test
Release ThreadX regression system
Diffstat (limited to 'scripts/install.sh')
| -rwxr-xr-x | scripts/install.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/install.sh b/scripts/install.sh new file mode 100755 index 00000000..5435f4fc --- /dev/null +++ b/scripts/install.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# +# Install necessary softwares for Ubuntu. + +apt-get update +apt-get install -y \ + gcc-multilib \ + git \ + g++ \ + python3-pip \ + ninja-build \ + unifdef \ + p7zip-full \ + tofrodos \ + gawk \ + cmake \ + software-properties-common + +python3 -m pip install --upgrade pip +pip3 install artifacts-keyring +pip3 install gcovr==4.1 $INDEX_URL + |
