summaryrefslogtreecommitdiff
path: root/Documentation/SelfHostedRunners.md
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2021-07-03 21:31:08 +0300
committerLinus Groh <mail@linusgroh.de>2021-07-03 19:45:04 +0100
commite9ab9ca5a0de30b042adbc1a288cda9e1910b240 (patch)
tree1b62df4f3bb9ed48085f8cdff68fd079fb9761f8 /Documentation/SelfHostedRunners.md
parentf2dca54bf0ad011098137be0c225645fdde79c08 (diff)
downloadserenity-e9ab9ca5a0de30b042adbc1a288cda9e1910b240.zip
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.
Diffstat (limited to 'Documentation/SelfHostedRunners.md')
-rw-r--r--Documentation/SelfHostedRunners.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/SelfHostedRunners.md b/Documentation/SelfHostedRunners.md
index b610eeb872..eb8379c04c 100644
--- a/Documentation/SelfHostedRunners.md
+++ b/Documentation/SelfHostedRunners.md
@@ -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