diff options
author | Nick Thomas <nick@gitlab.com> | 2017-08-10 10:39:48 +0100 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2017-08-10 10:48:45 +0100 |
commit | 1c8e4fcd7a2f97b4166a7b0e23579cec7b99bdb5 (patch) | |
tree | 25e034d9598258c07193bc47deee469d5a17865d /doc/update/9.2-to-9.3.md | |
parent | 188181b780c5c0e5b05339daddad9c25c3b1bf85 (diff) | |
download | gitlab-ce-1c8e4fcd7a2f97b4166a7b0e23579cec7b99bdb5.tar.gz |
Include RE2 in the upgrade docs
Diffstat (limited to 'doc/update/9.2-to-9.3.md')
-rw-r--r-- | doc/update/9.2-to-9.3.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/update/9.2-to-9.3.md b/doc/update/9.2-to-9.3.md index 9415fa1fcd6..9d0b0da7edb 100644 --- a/doc/update/9.2-to-9.3.md +++ b/doc/update/9.2-to-9.3.md @@ -258,6 +258,16 @@ sudo systemctl daemon-reload ### 12. Install libs, migrations, etc. +GitLab 9.3.8 [introduced](https://gitlab.com/gitlab-org/gitlab-ce/issues/24570) +a dependency on on the `re2` regular expression library. To install this dependency: + +```bash +sudo apt-get install libre2-dev +``` + +Ubuntu 14.04 (Trusty Tahr) doesn't have the `libre2-dev` package available, but +you can [install re2 manually](https://github.com/google/re2/wiki/Install). + ```bash cd /home/git/gitlab |