Documentation: Add git to the list of self-hosted runner requirements

Github-hosted runners have this pre-installed, so our actions script
do not install it themselves.
This commit is contained in:
Idan Horowitz 2021-07-03 21:31:08 +03:00 committed by Linus Groh
parent f2dca54bf0
commit e9ab9ca5a0
Notes: sideshowbarker 2024-07-18 10:36:38 +09:00

View file

@ -20,7 +20,7 @@ These instructions assume the OS installed is Ubuntu 20.04 (Focal), so they migh
```shell
add-apt-repository ppa:canonical-server/server-backports
apt update
apt install build-essential make cmake clang-format-11 gcc-10 g++-10 libstdc++-10-dev libgmp-dev ccache libmpfr-dev libmpc-dev ninja-build e2fsprogs qemu-utils qemu-system-i386 wabt
apt install git build-essential make cmake clang-format-11 gcc-10 g++-10 libstdc++-10-dev libgmp-dev ccache libmpfr-dev libmpc-dev ninja-build e2fsprogs qemu-utils qemu-system-i386 wabt
```
### Force usage of GCC 10
```shell