commit | cb4b1e3a8baff44ada0ef33daf0ee3d20631f891 | [log] [tgz] |
---|---|---|
author | Philipp Wollermann <philwo@google.com> | Fri Mar 23 10:24:37 2018 +0100 |
committer | Philipp Wollermann <philwo@google.com> | Fri Mar 23 09:31:44 2018 +0000 |
tree | 7db1a0da95e41b370c08137d86610ef3e521280f | |
parent | 70d85b73404c41b4583ab20081f716993baa01c3 [diff] |
Use the system default version of Python to run Documentation scripts. They work fine with Python 2.7 and Python 3.5 anyway and some systems do not have a "python2" binary (e.g. macOS). This will fix the Gerrit CI build on Bazel's CI, which is currently failing with: ERROR: /Users/buildkite/builds/buildkite-macpro-7-1/bazel-downstream-projects/gerrit/Documentation/BUILD:94:1: Couldn't build file Documentation/pg-plugin-endpoints.txt.html_htmlonly_expn: error executing shell command: '.html_htmlonly_expn' failed (Exit 127) env: python2: No such file or directory I tested this change like this: # Build with Python 2 to ensure my local setup is fine. bazel build //Documentation/... # Works fine. # Now build with Python 3 instead, to ensure compatibility. sed -i 's/python2/python3/g' Documentation/replace_macros.py \ tools/bzl/license.bzl bazel clean bazel build //Documentation/... # Works fine, too. Thus we can safely change "python2" to "python" and let the scripts run with the system default version. Change-Id: I107b76bc71e9b42101d57f94ab7c54c90e7c74cb
Gerrit is a code review and project management tool for Git based projects.
Gerrit makes reviews easier by showing changes in a side-by-side display, and allowing inline comments to be added by any reviewer.
Gerrit simplifies Git based project maintainership by permitting any authorized user to submit changes to the master Git repository, rather than requiring all approved changes to be merged in by hand by the project maintainer.
For information about how to install and use Gerrit, refer to the documentation.
Our canonical Git repository is located on googlesource.com. There is a mirror of the repository on Github.
Please report bugs on the issue tracker.
Gerrit is the work of hundreds of contributors. We appreciate your help!
Please read the contribution guidelines.
Note that we do not accept Pull Requests via the Github mirror.
The IRC channel on freenode is #gerrit. An archive is available at: echelog.com.
The Developer Mailing list is repo-discuss on Google Groups.
Gerrit is provided under the Apache License 2.0.
Install Bazel and run the following:
git clone --recursive https://gerrit.googlesource.com/gerrit cd gerrit && bazel build release
The instruction how to configure GerritForge/BinTray repositories is here
On Debian/Ubuntu run:
apt-get update & apt-get install gerrit=<version>-<release>
NOTE: release is a counter that starts with 1 and indicates the number of packages that have been released with the same version of the software.
On CentOS/RedHat run:
yum clean all && yum install gerrit-<version>[-<release>]
On Fedora run:
dnf clean all && dnf install gerrit-<version>[-<release>]
Docker images of Gerrit are available on DockerHub
To run a CentOS 7 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-centos7[:version]
To run a Ubuntu 15.04 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-ubuntu15.04[:version]
NOTE: release is optional. Last released package of the version is installed if the release number is omitted.